我已经安装了Mocha和Chai。
在我的单元测试中:
import {expect, should} from "chai";
describe("array", function () {
it("has length of 1", function (done) {
var arr = ["B"];
expect(arr).have.lengthOf(1);
arr.should.have.lengthOf(1);
});
});
expect
按预期工作,但should
未定义。
为什么?
答案 0 :(得分:2)