mini
Minimalistic test runner for Node.js
Usage
// test/my-test.js
test('Sync test', function() {
// do sync stuff
});
test('Async test', function(done) {
// do async stuff
done();
});
Then:
$ mini
Installation
npm install mini
License
MIT