$ npm install -g mocha
$ mkdir test
$ $EDITOR test/test.js # or open with your favorite editor
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)
describe('Foo', function(){
describe('#bar()', function() {
it('should work without error', function(done) {
var foo = new Foo(128);
foo.bar(done);
})
})
})