输出为:
$ ./node_modules/mocha/bin/mocha Array #indexOf() ? should return -1 when the value is not present 1 passing (9ms) |
同时,mocha支持异步和Promise。
describe('#find()', function() { it('respond with matching records', function(done) { db.find({type: 'User'}, function(err, res) { if (err) return done(err); res.should.have.length(3); done(); }); }); }); }); |
原文转自:http://jixianqianduan.com/frontend-javascript/2016/11/22/front-end-auto-test.html