Package detail

mini

vesln86MIT1.1.0

Mini, node-able test runner

readme

Build Status

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