基于 这个教程测试 angularjs 应用程序 chai,我想添加一个测试未定义的值使用“应该”样式。这种做法失败了:
it ('cannot play outside the board', function() {
scope.play(10).should.be.undefined;
});
带有错误“ TypeError: 无法读取未定义的属性‘ should’”,但测试通过了“ Expect”样式:
it ('cannot play outside the board', function() {
chai.expect(scope.play(10)).to.be.undefined;
});
我怎样才能让它与“应该”一起工作?