Skip to content

Commit

Permalink
Fixed --publishQuiet typo (#2003)
Browse files Browse the repository at this point in the history
```sh
> cucumber-js --publishQuiet

error: unknown option '--publishQuiet'
(Did you mean --publish-quiet?)
```
  • Loading branch information
Pyrolistical committed Apr 18, 2022
1 parent 578137c commit dfb3f79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/configuration.md
Expand Up @@ -82,7 +82,7 @@ These options can be used in a configuration file (see [above](#files)) or on th
| `order` | `string` | No | `--order` | Run in the order defined, or in a random order | defined |
| `parallel` | `number` | No | `--parallel` | Run tests in parallel with the given number of worker processes - see [Parallel](./parallel.md) | 0 |
| `publish` | `boolean` | No | `--publish` | Publish a report of your test run to <https://reports.cucumber.io/> | false |
| `publishQuiet` | `boolean` | No | `--publishQuiet` | Don't show info about publishing reports | false |
| `publishQuiet` | `boolean` | No | `--publish-quiet` | Don't show info about publishing reports | false |
| `require` | `string[]` | Yes | `--require`, `-r` | Paths to where your support code is, for CommonJS - see [below](#finding-your-code) | [] |
| `requireModule` | `string[]` | Yes | `--require-module` | Names of transpilation modules to load, loaded via `require()` - see [Transpiling](./transpiling.md) | [] |
| `retry` | `number` | No | `--retry` | Retry failing tests up to the given number of times - see [Retry](./retry.md) | 0 |
Expand Down

0 comments on commit dfb3f79

Please sign in to comment.