我想利用jasmine-jquery的新json fixtures能力,但无法使它工作。我有一个Rails 3.2应用程序,常绿用于JS测试。正如https://github.com/velesin/jasmine-jquery的自述文件所述,将jasmine-jquery.js
置于spec/javascripts/helpers
目录内会自动加载jasmine-jquery
。
我把jasmine-jquery(和jasmine-ajax等其他库)放进去了 spec / javascripts / helpers dir(因此它们会自动加载)和 夹具到spec / javascripts / fixtures目录。
但事实并非如此。我尝试在spec_helper.js
中加载文件,但require
仅指向公共目录。
我也找到了这个答案:https://groups.google.com/forum/?fromgroups=#!topic/ruby-evergreen/0Tma5RKqZB8 但是解决方案在我的情况下不起作用。
那么,我在哪里可以告诉evergreen / jasmine加载jasmine-jquery.js
文件,以便我可以使用loadFixtures方法......?