Skip to content

Commit 87f9b29

Browse files
committed
[readme] port changes from v5
1 parent 8d6aa6c commit 87f9b29

File tree

1 file changed

+124
-53
lines changed

1 file changed

+124
-53
lines changed

readme.markdown

+124-53
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
1-
# tape
1+
# tape <sup>[![Version Badge][npm-version-svg][package-url]]</sup>
22

33
tap-producing test harness for node and browsers
44

55
[![github actions][actions-image]][actions-url]
66
[![coverage][codecov-image]][codecov-url]
7+
[![dependency status][deps-svg]][deps-url]
8+
[![dev dependency status][dev-deps-svg]][dev-deps-url]
9+
[![License][license-image]][license-url]
10+
[![Downloads][downloads-image]][downloads-url]
11+
12+
[![npm badge][npm-badge-png]][package-url]
713

814
![tape](https://web.archive.org/web/20170612184731if_/http://substack.net/images/tape_drive.png)
915

@@ -44,19 +50,16 @@ not ok 2 should be equal
4450

4551
# usage
4652

47-
You always need to `require('tape')` in test files. You can run the tests by
48-
usual node means (`require('test-file.js')` or `node test-file.js`). You can
49-
also run tests using the `tape` binary to utilize globbing, on Windows for
50-
example:
53+
You always need to `require('tape')` in test files.
54+
You can run the tests by usual node means (`require('test-file.js')` or `node test-file.js`).
55+
You can also run tests using the `tape` binary to utilize globbing, on Windows for example:
5156

5257
```sh
5358
$ tape tests/**/*.js
5459
```
5560

56-
`tape`'s arguments are passed to the
57-
[`glob`](https://www.npmjs.com/package/glob) module. If you want `glob` to
58-
perform the expansion on a system where the shell performs such expansion, quote
59-
the arguments as necessary:
61+
`tape`'s arguments are passed to the [`glob`](https://www.npmjs.com/package/glob) module.
62+
If you want `glob` to perform the expansion on a system where the shell performs such expansion, quote the arguments as necessary:
6063

6164
```sh
6265
$ tape 'tests/**/*.js'
@@ -91,8 +94,7 @@ Please note that all modules loaded using the `-r` flag will run *before* any te
9194

9295
The default TAP output is good for machines and humans that are robots.
9396

94-
If you want a more colorful / pretty output there are lots of modules on npm
95-
that will output something pretty if you pipe TAP into them:
97+
If you want a more colorful / pretty output there are lots of modules on npm that will output something pretty if you pipe TAP into them:
9698

9799
- [tap-spec](https://github.com/scottcorgan/tap-spec)
98100
- [tap-dot](https://github.com/scottcorgan/tap-dot)
@@ -118,9 +120,9 @@ that will output something pretty if you pipe TAP into them:
118120
- [tap-nyc](https://github.com/MegaArman/tap-nyc)
119121
- [tap-spec (emoji patch)](https://github.com/Sceat/tap-spec-emoji)
120122
- [tape-repeater](https://github.com/rgruesbeck/tape-repeater)
123+
- [tabe](https://github.com/Josenzo/tabe)
121124

122-
To use them, try `node test/index.js | tap-spec` or pipe it into one
123-
of the modules of your choice!
125+
To use them, try `node test/index.js | tap-spec` or pipe it into one of the modules of your choice!
124126

125127
## uncaught exceptions
126128

@@ -139,8 +141,7 @@ By default, uncaught exceptions in your tests will not be intercepted, and will
139141

140142
# methods
141143

142-
The assertion methods in `tape` are heavily influenced or copied from the methods
143-
in [node-tap](https://github.com/isaacs/node-tap).
144+
The assertion methods in `tape` are heavily influenced or copied from the methods in [node-tap](https://github.com/isaacs/node-tap).
144145

145146
```js
146147
var test = require('tape')
@@ -149,45 +150,46 @@ var test = require('tape')
149150
## test([name], [opts], cb)
150151

151152
Create a new test with an optional `name` string and optional `opts` object.
152-
`cb(t)` fires with the new test object `t` once all preceding tests have
153-
finished. Tests execute serially.
153+
`cb(t)` fires with the new test object `t` once all preceding tests have finished. Tests execute serially.
154154

155155
Available `opts` options are:
156156
- opts.skip = true/false. See test.skip.
157157
- opts.timeout = 500. Set a timeout for the test, after which it will fail. See test.timeoutAfter.
158158
- opts.objectPrintDepth = 5. Configure max depth of expected / actual object printing. Environmental variable `NODE_TAPE_OBJECT_PRINT_DEPTH` can set the desired default depth for all tests; locally-set values will take precedence.
159159
- opts.todo = true/false. Test will be allowed to fail.
160160

161-
If you forget to `t.plan()` out how many assertions you are going to run and you
162-
don't call `t.end()` explicitly, your test will hang.
161+
If you forget to `t.plan()` out how many assertions you are going to run and you don't call `t.end()` explicitly, your test will hang.
163162

164163
## test.skip([name], [opts], cb)
165164

166165
Generate a new test that will be skipped over.
167166

168-
## test.teardown(cb)
169-
170-
Register a callback to run after the individual test has completed. Multiple registered teardown callbacks will run in order. Useful for undoing side effects, closing network connections, etc.
171-
172167
## test.onFinish(fn)
173168

174-
The onFinish hook will get invoked when ALL `tape` tests have finished
175-
right before `tape` is about to print the test summary.
169+
The onFinish hook will get invoked when ALL `tape` tests have finished right before `tape` is about to print the test summary.
170+
171+
`fn` is called with no arguments, and its return value is ignored.
176172

177173
## test.onFailure(fn)
178174

179175
The onFailure hook will get invoked whenever any `tape` tests has failed.
180176

177+
`fn` is called with no arguments, and its return value is ignored.
178+
181179
## t.plan(n)
182180

183-
Declare that `n` assertions should be run. `t.end()` will be called
184-
automatically after the `n`th assertion. If there are any more assertions after
185-
the `n`th, or after `t.end()` is called, they will generate errors.
181+
Declare that `n` assertions should be run. `t.end()` will be called automatically after the `n`th assertion.
182+
If there are any more assertions after the `n`th, or after `t.end()` is called, they will generate errors.
186183

187184
## t.end(err)
188185

189-
Declare the end of a test explicitly. If `err` is passed in `t.end` will assert
190-
that it is falsey.
186+
Declare the end of a test explicitly. If `err` is passed in `t.end` will assert that it is falsy.
187+
188+
Do not call `t.end()` if your test callback returns a Promise.
189+
190+
## t.teardown(cb)
191+
192+
Register a callback to run after the individual test has completed. Multiple registered teardown callbacks will run in order. Useful for undoing side effects, closing network connections, etc.
191193

192194
## t.fail(msg)
193195

@@ -219,8 +221,7 @@ Aliases: `t.false()`, `t.notok()`
219221

220222
## t.error(err, msg)
221223

222-
Assert that `err` is falsy. If `err` is non-falsy, use its `err.message` as the
223-
description message.
224+
Assert that `err` is falsy. If `err` is non-falsy, use its `err.message` as the description message.
224225

225226
Aliases: `t.ifError()`, `t.ifErr()`, `t.iferror()`
226227

@@ -266,9 +267,7 @@ Aliases: `t.looseEqual()`, `t.looseEquals()`
266267

267268
## t.notDeepLooseEqual(actual, expected, msg)
268269

269-
Assert that `actual` and `expected` do not have the same structure and nested values using
270-
[node's deepEqual() algorithm](https://github.com/substack/node-deep-equal)
271-
with loose comparisons (`==`) on leaf nodes and an optional description of the assertion `msg`.
270+
Assert that `actual` and `expected` do not have the same structure and nested values using [node's deepEqual() algorithm](https://github.com/substack/node-deep-equal) with loose comparisons (`==`) on leaf nodes and an optional description of the assertion `msg`.
272271

273272
Aliases: `t.notLooseEqual()`, `t.notLooseEquals()`
274273

@@ -319,20 +318,22 @@ Please note that the second parameter, `expected`, cannot be of type `string`. I
319318

320319
## t.doesNotThrow(fn, expected, msg)
321320

322-
Assert that the function call `fn()` does not throw an exception. `expected`, if present, limits what should not be thrown. For example, set `expected` to `/user/` to fail the test only if the string representation of the exception contains the word `user`. Any other exception would pass the test. If `expected` is omitted, any exception will fail the test. `msg` is an optional description of the assertion.
321+
Assert that the function call `fn()` does not throw an exception. `expected`, if present, limits what should not be thrown, and must be a `RegExp` or `Function`. The `RegExp` matches the string representation of the exception, as generated by `err.toString()`. For example, if you set `expected` to `/user/`, the test will fail only if the string representation of the exception contains the word `user`. Any other exception will result in a passed test. The `Function` is the exception thrown (e.g. `Error`). If `expected` is not of type `RegExp` or `Function`, or omitted entirely, any exception will result in a failed test. `msg` is an optional description of the assertion.
322+
323+
Please note that the second parameter, `expected`, cannot be of type `string`. If a value of type `string` is provided for `expected`, then `t.doesNotThrows(fn, expected, msg)` will execute, but the value of `expected` will be set to `undefined`, and the specified string will be set as the value for the `msg` parameter (regardless of what _actually_ passed as the third parameter). This can cause unexpected results, so please be mindful.
323324

324325
## t.test(name, [opts], cb)
325326

326-
Create a subtest with a new test handle `st` from `cb(st)` inside the current
327-
test `t`. `cb(st)` will only fire when `t` finishes. Additional tests queued up
328-
after `t` will not be run until all subtests finish.
327+
Create a subtest with a new test handle `st` from `cb(st)` inside the current test `t`. `cb(st)` will only fire when `t` finishes. Additional tests queued up after `t` will not be run until all subtests finish.
329328

330329
You may pass the same options that [`test()`](#testname-opts-cb) accepts.
331330

332331
## t.comment(message)
333332

334333
Print a message without breaking the tap output. (Useful when using e.g. `tap-colorize` where output is buffered & `console.log` will print in incorrect order vis-a-vis tap output.)
335334

335+
Multiline output will be split by `\n` characters, and each one printed as a comment.
336+
336337
## t.match(string, regexp, message)
337338

338339
Assert that `string` matches the RegExp `regexp`. Will throw (not just fail) when the first two arguments are the wrong type.
@@ -343,25 +344,17 @@ Assert that `string` does not match the RegExp `regexp`. Will throw (not just fa
343344

344345
## var htest = test.createHarness()
345346

346-
Create a new test harness instance, which is a function like `test()`, but with
347-
a new pending stack and test state.
347+
Create a new test harness instance, which is a function like `test()`, but with a new pending stack and test state.
348348

349-
By default the TAP output goes to `console.log()`. You can pipe the output to
350-
someplace else if you `htest.createStream().pipe()` to a destination stream on
351-
the first tick.
349+
By default the TAP output goes to `console.log()`. You can pipe the output to someplace else if you `htest.createStream().pipe()` to a destination stream on the first tick.
352350

353351
## test.only([name], [opts], cb)
354352

355-
Like `test([name], [opts], cb)` except if you use `.only` this is the only test case
356-
that will run for the entire process, all other test cases using `tape` will
357-
be ignored.
353+
Like `test([name], [opts], cb)` except if you use `.only` this is the only test case that will run for the entire process, all other test cases using `tape` will be ignored.
358354

359355
## var stream = test.createStream(opts)
360356

361-
Create a stream of output, bypassing the default output stream that writes
362-
messages to `console.log()`. By default `stream` will be a text stream of TAP
363-
output, but you can get an object stream instead by setting `opts.objectMode` to
364-
`true`.
357+
Create a stream of output, bypassing the default output stream that writes messages to `console.log()`. By default `stream` will be a text stream of TAP output, but you can get an object stream instead by setting `opts.objectMode` to `true`.
365358

366359
### tap stream reporter
367360

@@ -378,8 +371,7 @@ process.argv.slice(2).forEach(function (file) {
378371
});
379372
```
380373

381-
You could substitute `process.stdout` for whatever other output stream you want,
382-
like a network connection or a file.
374+
You could substitute `process.stdout` for whatever other output stream you want, like a network connection or a file.
383375

384376
Pass in test files to run as arguments:
385377

@@ -460,10 +452,89 @@ With [npm](https://npmjs.org) do:
460452
npm install tape --save-dev
461453
```
462454

455+
# troubleshooting
456+
457+
Sometimes `t.end()` doesn’t preserve the expected output ordering.
458+
459+
For instance the following:
460+
461+
```js
462+
var test = require('tape');
463+
464+
test('first', function (t) {
465+
466+
setTimeout(function () {
467+
t.ok(1, 'first test');
468+
t.end();
469+
}, 200);
470+
471+
t.test('second', function (t) {
472+
t.ok(1, 'second test');
473+
t.end();
474+
});
475+
});
476+
477+
test('third', function (t) {
478+
setTimeout(function () {
479+
t.ok(1, 'third test');
480+
t.end();
481+
}, 100);
482+
});
483+
```
484+
485+
will output:
486+
487+
```
488+
ok 1 second test
489+
ok 2 third test
490+
ok 3 first test
491+
```
492+
493+
because `second` and `third` assume `first` has ended before it actually does.
494+
495+
Use `t.plan()` instead to let other tests know they should wait:
496+
497+
```diff
498+
var test = require('tape');
499+
500+
test('first', function (t) {
501+
502+
+ t.plan(2);
503+
504+
setTimeout(function () {
505+
t.ok(1, 'first test');
506+
- t.end();
507+
}, 200);
508+
509+
t.test('second', function (t) {
510+
t.ok(1, 'second test');
511+
t.end();
512+
});
513+
});
514+
515+
test('third', function (t) {
516+
setTimeout(function () {
517+
t.ok(1, 'third test');
518+
t.end();
519+
}, 100);
520+
});
521+
```
522+
463523
# license
464524

465525
MIT
466526

527+
[package-url]: https://npmjs.org/package/tape
528+
[npm-version-svg]: https://versionbadg.es/substack/tape.svg
529+
[deps-svg]: https://david-dm.org/substack/tape.svg
530+
[deps-url]: https://david-dm.org/substack/tape
531+
[dev-deps-svg]: https://david-dm.org/substack/tape/dev-status.svg
532+
[dev-deps-url]: https://david-dm.org/substack/tape#info=devDependencies
533+
[npm-badge-png]: https://nodei.co/npm/tape.png?downloads=true&stars=true
534+
[license-image]: https://img.shields.io/npm/l/tape.svg
535+
[license-url]: LICENSE
536+
[downloads-image]: https://img.shields.io/npm/dm/tape.svg
537+
[downloads-url]: https://npm-stat.com/charts.html?package=tape
467538
[codecov-image]: https://codecov.io/gh/substack/tape/branch/master/graphs/badge.svg
468539
[codecov-url]: https://app.codecov.io/gh/substack/tape/
469540
[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/substack/tape

0 commit comments

Comments
 (0)