Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add tap-react-browser #433

Merged
merged 1 commit into from
Apr 10, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions readme.markdown
Original file line number Diff line number Diff line change
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