JSPM

  • Created
  • Published
  • Downloads 489858
  • Score
    100M100P100Q171086F
  • License MIT

WIP - Simple test runner

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 Build Status

WIP - Simple test runner

Install

$ npm install --save-dep ava

Usage

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 test

License

MIT © Sindre Sorhus