我目前正在使用Mocha和断言库should.js
我正在尝试在单元测试中遇到一个可能引发异常的情况-但是从查看文档开始,到目前为止我并没有太多运气。
当前正在使用以下代码块:
it('Adds a new employee to the db - FAILS', funct
let employeeObj = {
"Title": "Mr",
"FirstName": "Keanu ",
"LastName": "Reeves",
"Username": "KeanuReeves2",
"Password": "Password",
"Email": "keanu@reeves.com",
"IsActive": true
};
should(function () {
db.AddNewEmployee(employeeObj);
}).throw("U wot m8");
done();
});
我不断收到错误消息:
AssertionError: expected Function { name: '' } to throw exception
at Assertion.fail (node_modules\should\cjs\should.js:275:17)
at Assertion.value (node_modules\should\cjs\should.js:356:19)
at Context.<anonymous> (common\spec\knexDBServiceSpec.js:213:25)
有人遇到过这个问题吗?或者可以给我一些有关哪里出问题的指导?
答案 0 :(得分:0)
它完全按照您的设置进行操作。
您应该告诉您,您的函数应引发异常“ U wot m8”。 但是没有,因此应该失败了。
期望(应该)是应该抛出。