Skip to content

Commit b2697a7

Browse files
dfberryboneskull
authored andcommitted
add --no-timeouts to docs; closes #3137 (#3176)
1 parent a723b8f commit b2697a7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

docs/index.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -817,7 +817,7 @@ Only interested in the first exception? use `--bail`!
817817

818818
### `-d, --debug`
819819

820-
Enables node's debugger support, this executes your script(s) with `node debug <file ...>` allowing you to step through code and break with the `debugger` statement. Note the difference between `mocha debug` and `mocha --debug`: `mocha debug` will fire up node's built-in debug client, `mocha --debug` will allow you to use a different interface — such as the Blink Developer Tools.
820+
Enables node's debugger support, this executes your script(s) with `node debug <file ...>` allowing you to step through code and break with the `debugger` statement. Note the difference between `mocha debug` and `mocha --debug`: `mocha debug` will fire up node's built-in debug client, `mocha --debug` will allow you to use a different interface — such as the Blink Developer Tools. Implies `--no-timeouts`.
821821

822822
### `--globals <names>`
823823

@@ -845,6 +845,10 @@ The `--reporter` option allows you to specify the reporter that will be used, de
845845

846846
Specifies the test-case timeout, defaulting to 2 seconds. To override you may pass the timeout in milliseconds, or a value with the `s` suffix, ex: `--timeout 2s` or `--timeout 2000` would be equivalent.
847847

848+
### `--no-timeouts`
849+
850+
Disables timeouts. Equivalent to `--timeout 0`.
851+
848852
### `-s, --slow <ms>`
849853

850854
Specify the "slow" test threshold, defaulting to 75ms. Mocha uses this to highlight test-cases that are taking too long.

0 commit comments

Comments
 (0)