我已经安装了茉莉,但测试无法运行总是说没有找到规格

时间:2018-05-07 05:26:16

标签: javascript jasmine

我已经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

始终提供未找到规格

请提前帮助我!!!!

0 个答案:

没有答案