Skip to content

Commit c1b619d

Browse files
clarkttfuljharb
authored andcommitted
[readme] improve t.throws description for Function
1 parent d5d675d commit c1b619d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

readme.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ Aliases: `t.notLooseEqual()`, `t.notLooseEquals()`
327327

328328
## t.throws(fn, expected, msg)
329329

330-
Assert that the function call `fn()` throws an exception. `expected`, if present, must be a `RegExp`, `Function`, or `Object`. 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 pass only if the string representation of the exception contains the word `user`. Any other exception will result in a failed test. The `Function` is the exception thrown (e.g. `Error`). `Object` in this case corresponds to a so-called validation object, in which each property is tested for strict deep equality. As an example, see the following two tests--each passes a validation object to `t.throws()` as the second parameter. The first test will pass, because all property values in the actual error object are deeply strictly equal to the property values in the validation object.
330+
Assert that the function call `fn()` throws an exception. `expected`, if present, must be a `RegExp`, `Function`, or `Object`. 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 pass only if the string representation of the exception contains the word `user`. Any other exception will result in a failed test. The `Function` could be the constructor for the Error type thrown, or a predicate function to be called with that exception. `Object` in this case corresponds to a so-called validation object, in which each property is tested for strict deep equality. As an example, see the following two tests--each passes a validation object to `t.throws()` as the second parameter. The first test will pass, because all property values in the actual error object are deeply strictly equal to the property values in the validation object.
331331
```
332332
const err = new TypeError("Wrong value");
333333
err.code = 404;

0 commit comments

Comments
 (0)