I am trying to run my integration tests using RSpec and Capybara using the command "rspec spec" , it used to run fine until recently it just opens the browser and stays there until timeout.
Here is the test code :
it "should see payment error if payment amount is smaller than product price", :js => true do
visit("/")
find_link("A new product").click
end