Skip to content

Commit d8ca270

Browse files
authoredOct 29, 2024··
fix: Typos on mochajs.org (#5237)
1 parent 0a7ee14 commit d8ca270

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
@@ -1170,7 +1170,7 @@ Cause Mocha to only run tests matching the given `regexp`, which is internally c
11701170
Suppose, for example, you have "api" related tests, as well as "app" related tests, as shown in the following snippet; One could use `--grep api` or `--grep app` to run one or the other. The same goes for any other part of a suite or test-case title, `--grep users` would be valid as well, or even `--grep GET`.
11711171

11721172
And another option with double quotes: `--grep "groupA|groupB"`.<br>
1173-
And for more complex criterias: `--grep "/get/i"`. Some shells as e.g. Git-Bash-for-Windows may require: `--grep "'/get/i'"`. Using flags other than the `ignoreCase /i` (especially `/g` and `/y`) may lead to unpredictable results.
1173+
And for more complex criteria: `--grep "/get/i"`. Some shells as e.g. Git-Bash-for-Windows may require: `--grep "'/get/i'"`. Using flags other than the `ignoreCase /i` (especially `/g` and `/y`) may lead to unpredictable results.
11741174

11751175
```js
11761176
describe('api', function () {
@@ -2248,7 +2248,7 @@ Mocha will also _merge_ any options found in `package.json` into its run-time co
22482248
1. Configuration file (`.mocharc.js`, `.mocharc.yml`, etc.)
22492249
1. `mocha` property of `package.json`
22502250

2251-
Options which can safely be repeated (e.g., `--require`) will be _concatenated_, with higher-priorty configuration sources appearing earlier in the list. For example, a `.mocharc.json` containing `"require": "bar"`, coupled with execution of `mocha --require foo`, would cause Mocha to require `foo`, then `bar`, in that order.
2251+
Options which can safely be repeated (e.g., `--require`) will be _concatenated_, with higher-priority configuration sources appearing earlier in the list. For example, a `.mocharc.json` containing `"require": "bar"`, coupled with execution of `mocha --require foo`, would cause Mocha to require `foo`, then `bar`, in that order.
22522252

22532253
### Extending Configuration
22542254

0 commit comments

Comments
 (0)
Please sign in to comment.