Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

mini

vesln81MIT1.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

changelog

1.1.0 / 2014-09-13

  • Set the node environment to "test"

1.0.0 / 2014-08-30

  • Standalone version

0.0.2 / 2013-12-23

  • Depend on latest hydro

0.0.1 / 2013-12-07

  • Initial implementation