标签: javascript unit-testing mocha should.js
我有以下代码(使用should.js的mocha测试):
should.js
it('must not be valid with empty object', function (done) { var result = {}; result.should.not.be.object; });
虽然结果是object,但它通过了。它还包含通行证result.should.be.object。
object
result.should.be.object
答案 0 :(得分:3)
查看documentation,您可能需要在该行上大写object。