Generator interface for tape
$ npm install tape-co
Just use it like tape, except your functions will be wrapped in co and you will no longer have to remember to call .end()
.
import test from 'tape-co'
import myThing from '..'
test('my thing should work', function *(t) {
const result = yield myThing(someValue)
t.ok(validate(result))
})
There's not a lot of documentation because that's really all there is to it. test.only/test.skip
will still work as normal.
Mostly because ava doesn't work in browsers yet.
MIT