You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

943 B

ava Build Status

Simple concurrent test runner

Install

$ npm install --save-dev ava

Usage

Add it to package.json
{
	"scripts": {
		"test": "ava test.js"
	}
}

Ava accepts files/folders/globs.

Create your test file
var test = require('ava');

test('test something', function (t) {
	t.assert(true);
	t.is('unicorn', 'unicorn');
	t.end();
});
Run it
$ npm test

Credit

Sindre Sorhus Kevin Mårtensson
Sindre Sorhus Kevin Mårtensson

License

MIT © Sindre Sorhus