Skip to content

Commit cb09e8b

Browse files
maraisrboneskull
authored andcommitted
document Error/undefined params to the 'done' callback; closes #3134
* docs: Error/undefined params to the 'done' callback
1 parent b2697a7 commit cb09e8b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ Mocha allows you to use any assertion library you wish. In the above example, w
155155

156156
## Asynchronous Code
157157

158-
Testing asynchronous code with Mocha could not be simpler! Simply invoke the callback when your test is complete. By adding a callback (usually named `done`) to `it()`, Mocha will know that it should wait for this function to be called to complete the test.
158+
Testing asynchronous code with Mocha could not be simpler! Simply invoke the callback when your test is complete. By adding a callback (usually named `done`) to `it()`, Mocha will know that it should wait for this function to be called to complete the test. This callback accepts both an `Error` instance (or subclass thereof) *or* a falsy value; anything else will cause a failed test.
159159

160160
```js
161161
describe('User', function() {
@@ -171,7 +171,7 @@ describe('User', function() {
171171
});
172172
```
173173

174-
To make things even easier, the `done()` callback accepts an error, so we may use this directly:
174+
To make things even easier, the `done()` callback also accepts an `Error` instance (i.e. `new Error()`), so we may use this directly:
175175

176176
```js
177177
describe('User', function() {

0 commit comments

Comments
 (0)