我正在尝试使用 Grunt.js 和 grunt-contrib-jasmine 插件将 jQuery 加载到我的测试中。这是我的 Gruntfile.js 的要点,我在 jasmine.options.vendor 数组中引用了 jQuery,正如文档所建议的那样。
https://gist.github.com/anonymous/4751371
但是,当我运行一个非常简单的测试时,它失败了,因为 jQuery 没有被加载:
describe('like module', function() {
var $ul;
beforeEach(function() {
$ul = $('<ul><li class="no-results"></li></ul>');
});
it('should test the value of some numbers', function() {
expect(9).toEqual(9);
});
});
知道为什么吗?