Wrap tape
async
functions and show error on reject. Bundled with supertape.
npm i try-to-tape
const tryToTape = require('try-to-tape');
const tape = tryToTape(require('tape'));
test('lib: arguments', async (t) => {
throw Error('hello');
// will call t.fail with an error
// will call t.end
t.end();
});
- try-catch - functional try-catch wrapper.
- try-to-catch - functional try-catch wrapper for promises.
MIT