extend-tape

1.2.0 • Public • Published

extend-tape

npm npm Build Status

Extends Tape with new assertions

Install

$ npm install --save-dev extend-tape

How to use

import tape from 'tape';
import addAssertions from 'extend-tape';
 
// add a new assertion: biggerThan
const test = addAssertions(tape, {
    biggerThan (a, b) {
        this.ok(> a, `is bigger than ${a}`);
    }
});
 
test('5 is bigger than 4', (t) => {
    t.biggerThan(4, 5);
    t.end();
});

Run tests

$ npm install
$ npm test

Package Sidebar

Install

npm i extend-tape

Weekly Downloads

705

Version

1.2.0

License

MIT

Last publish

Collaborators

  • atabel