babel-blue-tap

tap with babel and promise support

Usage no npm install needed!

<script type="module">
  import babelBlueTap from 'https://cdn.skypack.dev/babel-blue-tap';
</script>

README

Babel Blue Tap

Like blue-tape for tap but also brings in babel support.

Usage

import {testAsync} from 'babel-blue-tap';

testAsync('my test', async t => {
  t.equal(await fs.readFileAsync('package.json', 'utf8'), '{}');
});