You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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!
124
126
125
127
## uncaught exceptions
126
128
@@ -139,8 +141,7 @@ By default, uncaught exceptions in your tests will not be intercepted, and will
139
141
140
142
# methods
141
143
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).
144
145
145
146
```js
146
147
var test =require('tape')
@@ -149,45 +150,46 @@ var test = require('tape')
149
150
## test([name], [opts], cb)
150
151
151
152
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.
154
154
155
155
Available `opts` options are:
156
156
- opts.skip = true/false. See test.skip.
157
157
- opts.timeout = 500. Set a timeout for the test, after which it will fail. See test.timeoutAfter.
158
158
- 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.
159
159
- opts.todo = true/false. Test will be allowed to fail.
160
160
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.
163
162
164
163
## test.skip([name], [opts], cb)
165
164
166
165
Generate a new test that will be skipped over.
167
166
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
-
172
167
## test.onFinish(fn)
173
168
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.
176
172
177
173
## test.onFailure(fn)
178
174
179
175
The onFailure hook will get invoked whenever any `tape` tests has failed.
180
176
177
+
`fn` is called with no arguments, and its return value is ignored.
178
+
181
179
## t.plan(n)
182
180
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.
186
183
187
184
## t.end(err)
188
185
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.
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`.
@@ -319,20 +318,22 @@ Please note that the second parameter, `expected`, cannot be of type `string`. I
319
318
320
319
## t.doesNotThrow(fn, expected, msg)
321
320
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.
323
324
324
325
## t.test(name, [opts], cb)
325
326
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.
329
328
330
329
You may pass the same options that [`test()`](#testname-opts-cb) accepts.
331
330
332
331
## t.comment(message)
333
332
334
333
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.)
335
334
335
+
Multiline output will be split by `\n` characters, and each one printed as a comment.
336
+
336
337
## t.match(string, regexp, message)
337
338
338
339
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
343
344
344
345
## var htest = test.createHarness()
345
346
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.
348
348
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.
352
350
353
351
## test.only([name], [opts], cb)
354
352
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.
358
354
359
355
## var stream = test.createStream(opts)
360
356
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`.
0 commit comments