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
Copy file name to clipboardexpand all lines: readme.markdown
+20-25
Original file line number
Diff line number
Diff line change
@@ -161,22 +161,26 @@ Available `opts` options are:
161
161
- 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.
162
162
- opts.todo = true/false. Test will be allowed to fail.
163
163
164
-
If you forget to `t.plan()` out how many assertions you are going to run and you
165
-
don't call `t.end()` explicitly, your test will hang.
164
+
If you forget to `t.plan()` out how many assertions you are going to run and you don't call `t.end()` explicitly, or return a Promise that eventually settles, your test will hang.
165
+
166
+
If `cb` returns a Promise, it will be implicitly awaited. If that promise rejects, the test will be failed; if it fulfills, the test will end. Explicitly calling `t.end()` while also returning a Promise that fulfills is an error.
166
167
167
168
## test.skip([name], [opts], cb)
168
169
169
170
Generate a new test that will be skipped over.
170
171
171
172
## test.onFinish(fn)
172
173
173
-
The onFinish hook will get invoked when ALL `tape` tests have finished
174
-
right before `tape` is about to print the test summary.
174
+
The onFinish hook will get invoked when ALL `tape` tests have finished right before `tape` is about to print the test summary.
175
+
176
+
`fn` is called with no arguments, and its return value is ignored.
175
177
176
178
## test.onFailure(fn)
177
179
178
180
The onFailure hook will get invoked whenever any `tape` tests has failed.
179
181
182
+
`fn` is called with no arguments, and its return value is ignored.
183
+
180
184
## t.plan(n)
181
185
182
186
Declare that `n` assertions should be run. `t.end()` will be called
@@ -185,8 +189,9 @@ the `n`th, or after `t.end()` is called, they will generate errors.
185
189
186
190
## t.end(err)
187
191
188
-
Declare the end of a test explicitly. If `err` is passed in `t.end` will assert
189
-
that it is falsey.
192
+
Declare the end of a test explicitly. If `err` is passed in `t.end` will assert that it is falsy.
193
+
194
+
Do not call `t.end()` if your test callback returns a Promise.
@@ -289,16 +293,16 @@ Assert that the function call `fn()` does not throw an exception. `expected`, if
289
293
290
294
## t.test(name, [opts], cb)
291
295
292
-
Create a subtest with a new test handle `st` from `cb(st)` inside the current
293
-
test `t`. `cb(st)` will only fire when `t` finishes. Additional tests queued up
294
-
after `t` will not be run until all subtests finish.
296
+
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.
295
297
296
298
You may pass the same options that [`test()`](#testname-opts-cb) accepts.
297
299
298
300
## t.comment(message)
299
301
300
302
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.)
301
303
304
+
Multiline output will be split by `\n` characters, and each one printed as a comment.
305
+
302
306
## t.match(string, regexp, message)
303
307
304
308
Assert that `string` matches the RegExp `regexp`. Will throw (not just fail) when the first two arguments are the wrong type.
@@ -309,25 +313,17 @@ Assert that `string` does not match the RegExp `regexp`. Will throw (not just fa
309
313
310
314
## var htest = test.createHarness()
311
315
312
-
Create a new test harness instance, which is a function like `test()`, but with
313
-
a new pending stack and test state.
316
+
Create a new test harness instance, which is a function like `test()`, but with a new pending stack and test state.
314
317
315
-
By default the TAP output goes to `console.log()`. You can pipe the output to
316
-
someplace else if you `htest.createStream().pipe()` to a destination stream on
317
-
the first tick.
318
+
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.
318
319
319
320
## test.only([name], [opts], cb)
320
321
321
-
Like `test([name], [opts], cb)` except if you use `.only` this is the only test case
322
-
that will run for the entire process, all other test cases using `tape` will
323
-
be ignored.
322
+
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.
324
323
325
324
## var stream = test.createStream(opts)
326
325
327
-
Create a stream of output, bypassing the default output stream that writes
328
-
messages to `console.log()`. By default `stream` will be a text stream of TAP
329
-
output, but you can get an object stream instead by setting `opts.objectMode` to
330
-
`true`.
326
+
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