I want to speed up my application's test suite, which currently takes 13 seconds to run. A friend recommended me to use Zeus, but it doesn't work on Windows. What alternatives are there?
Gemfile
group :test do
gem 'capybara'
gem 'factory_girl_rails', '~> 4.2.1'
gem 'rspec-rails'
end
Edit: I looked around some more and the guy who made Spork told me to use Spring.
Check out this RailsCast on Spork
From the video:
"Spork improves the loading time of your test suite by starting up your Rails application once in the background. Use it with Guard for the ultimate combo."