You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/index.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -155,7 +155,7 @@ Mocha allows you to use any assertion library you wish. In the above example, w
155
155
156
156
## Asynchronous Code
157
157
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.
159
159
160
160
```js
161
161
describe('User', function() {
@@ -171,7 +171,7 @@ describe('User', function() {
171
171
});
172
172
```
173
173
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:
0 commit comments