我似乎无法完全理解如何正确使用测试,特别是使用Chai库。或者我可能会错过编程基础知识,有点困惑。
鉴于测试:
it("should check parameter type", function(){
expect(testFunction(1)).to.throw(TypeError);
expect(testFunction("test string")).to.throw(TypeError);
});
这是我正在测试的功能:
function testFunction(arg) {
if (typeof arg === "number" || typeof arg === "string")
throw new TypeError;
}
我期待测试通过,但我只是在控制台中看到抛出的错误:
TypeError: Test
at Object.testFunction (index.js:10:19)
at Context.<anonymous> (test\index.spec.js:31:28)
有人可以向我解释一下吗?
答案 0 :(得分:5)
调用expect
并且 - 如果没有抛出错误 - 结果将传递给expect
。因此,当抛出错误时,不会调用expect
。
您需要将一个函数传递给testFunction
it("should check parameter type", function(){
expect(function () { testFunction(1); }).to.throw(TypeError);
expect(function () { testFunction("test string"); }).to.throw(TypeError);
});
:
expect
{{1}}实现将看到它已被传递一个函数并将调用它。然后它将评估期望/断言。