testdouble / jasmine-rails

A Jasmine runner for rails projects that's got you covered in both the terminal and the browser
http://rubygems.org/gems/jasmine-rails
MIT License
378 stars 154 forks source link

jasmine-rails stuck in a loop #161

Closed c0mrade closed 9 years ago

c0mrade commented 9 years ago

For some reason when I run : localhost:3000/specs

My tests run in a loop, they all pass but still in a loop. I got 353 specs, as soon as they're done they start running from the beginning.

Anyone else experiencing this behavior?

searls commented 9 years ago

This is typically caused by a spec or app code that's doing something to refresh the page. Recommend you manually bisect your test suite to identify what's causing it.

c0mrade commented 9 years ago

Thanks, will do