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.
 
Kevin Martensson d71bd67062 Add `.pass()` method for generating passing assertions 10 years ago
lib Add `.pass()` method for generating passing assertions 9 years ago
test Add tests for running functions after last assertion 9 years ago
.editorconfig init 10 years ago
.gitattributes init 10 years ago
.gitignore init 10 years ago
.jshintrc init 10 years ago
.travis.yml init 10 years ago
cli.js init 10 years ago
index.js init 10 years ago
license init 10 years ago
package.json Add `.throws()` and `.doesNotThrow()` methods 9 years ago
readme.md add kevva 9 years ago

readme.md

ava Build Status

WIP - Simple concurrent test runner

Install

$ npm install --save-dev 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

Credit

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

License

MIT © Sindre Sorhus