Skip to content

Commit

Permalink
Add tap-react-browser
Browse files Browse the repository at this point in the history
  • Loading branch information
mcnuttandrew committed Mar 28, 2018
1 parent 9d501ff commit 6cbc53e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions readme.markdown
Expand Up @@ -15,10 +15,10 @@ var test = require('tape');

test('timing test', function (t) {
t.plan(2);

t.equal(typeof Date.now, 'function');
var start = Date.now();

setTimeout(function () {
t.equal(Date.now() - start, 100);
}, 100);
Expand Down Expand Up @@ -114,6 +114,7 @@ that will output something pretty if you pipe TAP into them:
- https://github.com/zoubin/tap-summary
- https://github.com/Hypercubed/tap-markdown
- https://github.com/gabrielcsapo/tap-html
- https://github.com/mcnuttandrew/tap-react-browser

To use them, try `node test/index.js | tap-spec` or pipe it into one
of the modules of your choice!
Expand Down Expand Up @@ -191,7 +192,7 @@ Generate a passing assertion with a message `msg`.
Automatically timeout the test after X ms.

## t.skip(msg)

Generate an assertion that will be skipped over.

## t.ok(value, msg)
Expand Down

0 comments on commit 6cbc53e

Please sign in to comment.