I have rails app and have some ajax call in application.js file. O have rspec, capybara, webkit, factorygirl and databasecleaner for testing. I wrote feature tests which all pass. Then accidentally delete application.js file and run the tests, they still pass. Please help me to find out why. Thanks so much.
PS: if you downvote my question, please at least tell me why. I have been searching for answers but couldn't find one.
Try with
rake assets:clobber
This will remove compiled assets and clean them.