我已经jasmine
安装了$npm install -g jasmine
然后我已经$jasmine init
创建了规范/支持我已将test.spec.js
放入其中spec/support/test.spec.js
test.spec.js
var a = 100;
var b = 200;
describe("A suite", function() {
it("contains spec with an expectation", function() {
expect(true).toBe(true);
});
});
我的jasmine.json看起来像这样
{
"spec_dir": "spec",
"spec_files": [
"*/[sS]pec.js"
],
"helpers": [
"helpers/*/.js"
],
"stopSpecOnExpectationFailure": false,
"random": false
}
现在我想通过
测试test.spec.js$ [通过运行] jasmine
始终提供未找到规格
请提前帮助我!!!!