try-to-tape
v1.2.6
Published
wrap tape async functions and show error on reject
Downloads
168
Maintainers
Readme
Try to Tape
Wrap tape
async
functions and show error on reject.
Install
npm i try-to-tape
Example
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();
});
Related
- try-catch - functional try-catch wrapper.
- try-to-catch - functional try-catch wrapper for promises.
License
MIT