Skip to content

Commit e532790

Browse files
committed
In docs, clarified when 'msg' describes the assertion. Also clarified 'expected' in throws().
1 parent fb600ee commit e532790

File tree

1 file changed

+10
-12
lines changed

1 file changed

+10
-12
lines changed

readme.markdown

+10-12
Original file line numberDiff line numberDiff line change
@@ -190,13 +190,13 @@ Generate an assertion that will be skipped over.
190190

191191
## t.ok(value, msg)
192192

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

195195
Aliases: `t.true()`, `t.assert()`
196196

197197
## t.notOk(value, msg)
198198

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

201201
Aliases: `t.false()`, `t.notok()`
202202

@@ -209,14 +209,14 @@ Aliases: `t.ifError()`, `t.ifErr()`, `t.iferror()`
209209

210210
## t.equal(actual, expected, msg)
211211

212-
Assert that `actual === expected` with an optional description `msg`.
212+
Assert that `actual === expected` with an optional description of the assertion `msg`.
213213

214214
Aliases: `t.equals()`, `t.isEqual()`, `t.is()`, `t.strictEqual()`,
215215
`t.strictEquals()`
216216

217217
## t.notEqual(actual, expected, msg)
218218

219-
Assert that `actual !== expected` with an optional description `msg`.
219+
Assert that `actual !== expected` with an optional description of the assertion `msg`.
220220

221221
Aliases: `t.notEquals()`, `t.notStrictEqual()`, `t.notStrictEquals()`,
222222
`t.isNotEqual()`, `t.isNot()`, `t.not()`, `t.doesNotEqual()`, `t.isInequal()`
@@ -225,17 +225,15 @@ Aliases: `t.notEquals()`, `t.notStrictEqual()`, `t.notStrictEquals()`,
225225

226226
Assert that `actual` and `expected` have the same structure and nested values using
227227
[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`.
230229

231230
Aliases: `t.deepEquals()`, `t.isEquivalent()`, `t.same()`
232231

233232
## t.notDeepEqual(actual, expected, msg)
234233

235234
Assert that `actual` and `expected` do not have the same structure and nested values using
236235
[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`.
239237

240238
Aliases: `t.notEquivalent()`, `t.notDeeply()`, `t.notSame()`,
241239
`t.isNotDeepEqual()`, `t.isNotDeeply()`, `t.isNotEquivalent()`,
@@ -245,25 +243,25 @@ Aliases: `t.notEquivalent()`, `t.notDeeply()`, `t.notSame()`,
245243

246244
Assert that `actual` and `expected` have the same structure and nested values using
247245
[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`.
249247

250248
Aliases: `t.looseEqual()`, `t.looseEquals()`
251249

252250
## t.notDeepLooseEqual(actual, expected, msg)
253251

254252
Assert that `actual` and `expected` do not have the same structure and nested values using
255253
[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`.
257255

258256
Aliases: `t.notLooseEqual()`, `t.notLooseEquals()`
259257

260258
## t.throws(fn, expected, msg)
261259

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

264262
## t.doesNotThrow(fn, expected, msg)
265263

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

268266
## t.test(name, [opts], cb)
269267

0 commit comments

Comments
 (0)