官方网站
CHAI是一个断言库,类似于节点的内置断言。它使测试变得更容易,因为您可以通过代码来运行大量的断言。
对数组的单元测试
res.body.should.to.be.an.instanceof(Array); res.body.should.to.have.lengthOf(1); res.body.should.to.have.deep.nested.property("[0].ean", data.ean);
Last updated 5 years ago