我对javascript真的很陌生,我正在用一个简单的规范javascript编写一些茉莉花测试。如何在不使用 requireJS 的情况下在本规范中引入对 jquery 和下划线的依赖关系?
describe( "Testing Karma and Jasmine", function () {
describe("Hello world test", function() {
it("says hello", function() {
expect(testingJasmine()).toEqual("Hello world!");
});
});
});
describe('just checking', function() {
it('works for app', function() {
var el = $('<div></div>');
var app = restify.createServer()
app.render();
expect(el.text()).toEqual('require.js up and running');
});
it('works for underscore', function() {
// just checking that _ works
expect(_.size([1,2,3])).toEqual(3);
});
});
如果您查看附加的代码,它无法解析 $(JQUERY) 和 _(UNDERSCORE) 依赖项。