ZenTest auto test does not run tests

I ran into the same problem as on the page: Autostart ZenTest does not run tests . However, nothing in this article helps me solve this problem. I have ZenTest and autotest-rails installed, and yet, when I run autotest from the command line, I see “autotest / rails loading” and then nothing else happens. No tests are performed or anything else. I tried to downgrade my version of Gem ZenTest to no avail. This is very frustrating. I tried to follow along with PeepCode screencast on rspec, but have not yet received an autotest to do one thing. Any suggestions?

+3
source share
1 answer

The message that fixed this issue for me:

http://groups.google.com/group/rspec/browse_thread/thread/b2d2a536bb74ddb8/bdec25872f211c70?lnk=gst&q=autotest#bdec25872f211c70

In short, add gem 'autotest'to the development and testing team in the Gemfile.

When you run autotest, you should see loading autotest/rails_rspec2(instead loading autotest/rails), and the specifications must be met.

0
source

Source: https://habr.com/ru/post/1756277/


All Articles