Package Exports
- ava
- ava/cli
- ava/cli.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ava) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
ava 
WIP - Simple test runner
Install
$ npm install --save-dep avaUsage
Add it to package.json
{
"scripts": {
"test": "ava"
}
}Create your test file
var test = require('ava');
test('test something', function (t) {
t.plan(1);
t.assert(true);
});Run it
$ npm testLicense
MIT © Sindre Sorhus