Skip to content

Commit df5a124

Browse files
committed
[readme] improve method docs
1 parent 6c0625f commit df5a124

File tree

1 file changed

+20
-25
lines changed

1 file changed

+20
-25
lines changed

readme.markdown

+20-25
Original file line numberDiff line numberDiff line change
@@ -161,22 +161,26 @@ Available `opts` options are:
161161
- 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.
162162
- opts.todo = true/false. Test will be allowed to fail.
163163

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.
166167

167168
## test.skip([name], [opts], cb)
168169

169170
Generate a new test that will be skipped over.
170171

171172
## test.onFinish(fn)
172173

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.
175177

176178
## test.onFailure(fn)
177179

178180
The onFailure hook will get invoked whenever any `tape` tests has failed.
179181

182+
`fn` is called with no arguments, and its return value is ignored.
183+
180184
## t.plan(n)
181185

182186
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.
185189

186190
## t.end(err)
187191

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.
190195

191196
## t.fail(msg)
192197

@@ -218,8 +223,7 @@ Aliases: `t.false()`, `t.notok()`
218223

219224
## t.error(err, msg)
220225

221-
Assert that `err` is falsy. If `err` is non-falsy, use its `err.message` as the
222-
description message.
226+
Assert that `err` is falsy. If `err` is non-falsy, use its `err.message` as the description message.
223227

224228
Aliases: `t.ifError()`, `t.ifErr()`, `t.iferror()`
225229

@@ -289,16 +293,16 @@ Assert that the function call `fn()` does not throw an exception. `expected`, if
289293

290294
## t.test(name, [opts], cb)
291295

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.
295297

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

298300
## t.comment(message)
299301

300302
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.)
301303

304+
Multiline output will be split by `\n` characters, and each one printed as a comment.
305+
302306
## t.match(string, regexp, message)
303307

304308
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
309313

310314
## var htest = test.createHarness()
311315

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.
314317

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.
318319

319320
## test.only([name], [opts], cb)
320321

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.
324323

325324
## var stream = test.createStream(opts)
326325

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`.
331327

332328
### tap stream reporter
333329

@@ -344,8 +340,7 @@ process.argv.slice(2).forEach(function (file) {
344340
});
345341
```
346342

347-
You could substitute `process.stdout` for whatever other output stream you want,
348-
like a network connection or a file.
343+
You could substitute `process.stdout` for whatever other output stream you want, like a network connection or a file.
349344

350345
Pass in test files to run as arguments:
351346

0 commit comments

Comments
 (0)