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/configuration.md
-1Lines changed: 0 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -93,7 +93,6 @@ These options can be used in a configuration file (see [above](#files)) or on th
93
93
|`order`|`string`| No |`--order`| Run in the order defined, or in a random order | defined |
94
94
|`parallel`|`number`| No |`--parallel`| Run tests in parallel with the given number of worker processes - see [Parallel](./parallel.md)| 0 |
95
95
|`publish`|`boolean`| No |`--publish`| Publish a report of your test run to <https://reports.cucumber.io/>| false |
96
-
|`publishQuiet`|`boolean`| No |`--publish-quiet`| Don't show info about publishing reports | false |
97
96
|`require`|`string[]`| Yes |`--require`, `-r`| Paths to where your support code is, for CommonJS - see [below](#finding-your-code)|[]|
98
97
|`requireModule`|`string[]`| Yes |`--require-module`| Names of transpilation modules to load, loaded via `require()` - see [Transpiling](./transpiling.md)|[]|
99
98
|`retry`|`number`| No |`--retry`| Retry failing tests up to the given number of times - see [Retry](./retry.md)| 0 |
Copy file name to clipboardExpand all lines: docs/deprecations.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,6 +46,14 @@ The `Runtime` class is used internally to represent an instance of the serial te
46
46
47
47
To adapt, pivot to the `runCucumber` function from the [JavaScript API](./javascript_api.md), or raise an issue if you feel your use case isn't catered for.
48
48
49
+
### publishQuiet
50
+
51
+
Deprecated in `9.4.0`. Will be removed in `11.0.0` or later.
52
+
53
+
The `publishQuiet` option (or `--publish-quiet` on the CLI) was used to hide the banner suggesting to use Cucumber Reports. The banner has since been removed, so the option now does nothing.
54
+
55
+
To adapt, remove the option from your configuration files and CLI commands (especially the latter, since the CLI will fail on unrecognised options).
56
+
49
57
## Previous deprecations
50
58
51
59
For deprecations that have been completed (i.e. the functionality removed), see [UPGRADING.md](../UPGRADING.md).
0 commit comments