有什么区别assert,expect和should什么时候使用什么?
assert
expect
should
assert.equal(3, '3', '== coerces values to strings'); var foo = 'bar'; expect(foo).to.equal('bar'); foo.should.equal('bar');
javascript mocha.js chai
chai ×1
javascript ×1
mocha.js ×1