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/guide/cli-table.md
+4-3
Original file line number
Diff line number
Diff line change
@@ -25,9 +25,9 @@
25
25
|`--coverage.cleanOnRerun`| Clean coverage report on watch rerun (default: true) |
26
26
|`--coverage.reportsDirectory <path>`| Directory to write coverage report to (default: ./coverage) |
27
27
|`--coverage.reporter <name>`| Coverage reporters to use. Visit [`coverage.reporter`](https://vitest.dev/config/#coverage-reporter) for more information (default: `["text", "html", "clover", "json"]`) |
28
-
|`--coverage.reportOnFailure`| Generate coverage report even when tests fail (default: false) |
29
-
|`--coverage.allowExternal`| Collect coverage of files outside the project root (default: false) |
30
-
|`--coverage.skipFull`| Do not show files with 100% statement, branch, and function coverage (default: false) |
28
+
|`--coverage.reportOnFailure`| Generate coverage report even when tests fail (default: `false`) |
29
+
|`--coverage.allowExternal`| Collect coverage of files outside the project root (default: `false`) |
30
+
|`--coverage.skipFull`| Do not show files with 100% statement, branch, and function coverage (default: `false`) |
31
31
|`--coverage.thresholds.100`| Shortcut to set all coverage thresholds to 100 (default: `false`) |
32
32
|`--coverage.thresholds.perFile`| Check thresholds per file. See `--coverage.thresholds.lines`, `--coverage.thresholds.functions`, `--coverage.thresholds.branches` and `--coverage.thresholds.statements` for the actual thresholds (default: `false`) |
33
33
|`--coverage.thresholds.autoUpdate`| Update threshold values: "lines", "functions", "branches" and "statements" to configuration file when current coverage is above the configured thresholds (default: `false`) |
@@ -119,3 +119,4 @@
119
119
|`--segfaultRetry <times>`| Retry the test suite if it crashes due to a segfault (default: `true`) |
120
120
|`--no-color`| Removes colors from the console output |
121
121
|`--clearScreen`| Clear terminal screen when re-running tests during watch mode (default: `true`) |
122
+
|`--standalone`| Start Vitest without running tests. File filters will be ignored, tests will be running only on change (default: `false`) |
0 commit comments