$ npm install -g mocha
$ mkdir test
var assert = require("assert")
describe('Foo', function(){
describe('#getBar(value)', function(){
it('should return 100 when value is negative') // placeholder
it('should return 0 when value is positive', function(){
assert.equal(0, Foo.getBar(10));
})
})
})
$ mocha
1 test complete (1ms)
Для асинхронного тестирования вызывается обратный вызов, и Mocha будет ждать завершения.
describe('Foo', function(){
describe('#bar()', function(){
it('should work without error', function(done){
var foo = new Foo(128);
foo.bar(done);
})
})
})