使用should.js进行mocha测试的问题

时间:2015-04-24 22:44:23

标签: javascript unit-testing mocha should.js

我有以下代码(使用should.js的mocha测试):

it('must not be valid with empty object', function (done) {
  var result = {};
  result.should.not.be.object;
});

虽然结果是object,但它通过了。它还包含通行证result.should.be.object

1 个答案:

答案 0 :(得分:3)

查看documentation,您可能需要在该行上大写object