@@ -190,13 +190,13 @@ Generate an assertion that will be skipped over.
190
190
191
191
## t.ok(value, msg)
192
192
193
- Assert that ` value ` is truthy with an optional description message ` msg ` .
193
+ Assert that ` value ` is truthy with an optional description of the assertion ` msg ` .
194
194
195
195
Aliases: ` t.true() ` , ` t.assert() `
196
196
197
197
## t.notOk(value, msg)
198
198
199
- Assert that ` value ` is falsy with an optional description message ` msg ` .
199
+ Assert that ` value ` is falsy with an optional description of the assertion ` msg ` .
200
200
201
201
Aliases: ` t.false() ` , ` t.notok() `
202
202
@@ -209,14 +209,14 @@ Aliases: `t.ifError()`, `t.ifErr()`, `t.iferror()`
209
209
210
210
## t.equal(actual, expected, msg)
211
211
212
- Assert that ` actual === expected ` with an optional description ` msg ` .
212
+ Assert that ` actual === expected ` with an optional description of the assertion ` msg ` .
213
213
214
214
Aliases: ` t.equals() ` , ` t.isEqual() ` , ` t.is() ` , ` t.strictEqual() ` ,
215
215
` t.strictEquals() `
216
216
217
217
## t.notEqual(actual, expected, msg)
218
218
219
- Assert that ` actual !== expected ` with an optional description ` msg ` .
219
+ Assert that ` actual !== expected ` with an optional description of the assertion ` msg ` .
220
220
221
221
Aliases: ` t.notEquals() ` , ` t.notStrictEqual() ` , ` t.notStrictEquals() ` ,
222
222
` t.isNotEqual() ` , ` t.isNot() ` , ` t.not() ` , ` t.doesNotEqual() ` , ` t.isInequal() `
@@ -225,17 +225,15 @@ Aliases: `t.notEquals()`, `t.notStrictEqual()`, `t.notStrictEquals()`,
225
225
226
226
Assert that ` actual ` and ` expected ` have the same structure and nested values using
227
227
[ node's deepEqual() algorithm] ( https://github.com/substack/node-deep-equal )
228
- with strict comparisons (` === ` ) on leaf nodes and an optional description
229
- ` msg ` .
228
+ with strict comparisons (` === ` ) on leaf nodes and an optional description of the assertion ` msg ` .
230
229
231
230
Aliases: ` t.deepEquals() ` , ` t.isEquivalent() ` , ` t.same() `
232
231
233
232
## t.notDeepEqual(actual, expected, msg)
234
233
235
234
Assert that ` actual ` and ` expected ` do not have the same structure and nested values using
236
235
[ node's deepEqual() algorithm] ( https://github.com/substack/node-deep-equal )
237
- with strict comparisons (` === ` ) on leaf nodes and an optional description
238
- ` msg ` .
236
+ with strict comparisons (` === ` ) on leaf nodes and an optional description of the assertion ` msg ` .
239
237
240
238
Aliases: ` t.notEquivalent() ` , ` t.notDeeply() ` , ` t.notSame() ` ,
241
239
` t.isNotDeepEqual() ` , ` t.isNotDeeply() ` , ` t.isNotEquivalent() ` ,
@@ -245,25 +243,25 @@ Aliases: `t.notEquivalent()`, `t.notDeeply()`, `t.notSame()`,
245
243
246
244
Assert that ` actual ` and ` expected ` have the same structure and nested values using
247
245
[ node's deepEqual() algorithm] ( https://github.com/substack/node-deep-equal )
248
- with loose comparisons (` == ` ) on leaf nodes and an optional description ` msg ` .
246
+ with loose comparisons (` == ` ) on leaf nodes and an optional description of the assertion ` msg ` .
249
247
250
248
Aliases: ` t.looseEqual() ` , ` t.looseEquals() `
251
249
252
250
## t.notDeepLooseEqual(actual, expected, msg)
253
251
254
252
Assert that ` actual ` and ` expected ` do not have the same structure and nested values using
255
253
[ node's deepEqual() algorithm] ( https://github.com/substack/node-deep-equal )
256
- with loose comparisons (` == ` ) on leaf nodes and an optional description ` msg ` .
254
+ with loose comparisons (` == ` ) on leaf nodes and an optional description of the assertion ` msg ` .
257
255
258
256
Aliases: ` t.notLooseEqual() ` , ` t.notLooseEquals() `
259
257
260
258
## t.throws(fn, expected, msg)
261
259
262
- Assert that the function call ` fn() ` throws an exception. ` expected ` , if present, must be a ` RegExp ` or ` Function ` .
260
+ Assert that the function call ` fn() ` throws an exception. ` expected ` , if present, must be a ` RegExp ` or ` Function ` . The ` RegExp ` matches the string representation of the exception, as generated by ` err.toString() ` . The ` Function ` is the exception thrown (e.g. ` Error ` ). ` msg ` is an optional description of the assertion.
263
261
264
262
## t.doesNotThrow(fn, expected, msg)
265
263
266
- Assert that the function call ` fn() ` does not throw an exception.
264
+ Assert that the function call ` fn() ` does not throw an exception. ` msg ` is an optional description of the assertion.
267
265
268
266
## t.test(name, [ opts] , cb)
269
267
0 commit comments