tapava
tapava gives you an ava-inspired api availalbe using tape.
This is, for example, great if you want your tests to be runnable in the browser.
Example/Usage
import test from 'tapava';
test('beep boop', t => {
t.deepEqual({foo: 'bar'}, {foo: 'bas'});
});
Run the test using babel-tape-runner. You need to add your own .babelrc
file - tapava doesn't come preconfigured like ava does.
babel-tape-runner test.js
License
MIT