Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

tapava

kesla62MIT2.3.0

the syntax of ava, run through tape

ava, tape

readme

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