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.
rake assets:clean
,rake assets:clobber
andrake assets:precompile
? – Detestablerake assets:clobber
worked, those cached file in public folder was the reason. Thanks so much man! – Smearcase