diff --git a/doc/api/cli.md b/doc/api/cli.md index 0a1c209f14d..f779a71baa0 100644 --- a/doc/api/cli.md +++ b/doc/api/cli.md @@ -2218,6 +2218,17 @@ concurrently. If `--experimental-test-isolation` is set to `'none'`, this flag is ignored and concurrency is one. Otherwise, concurrency defaults to `os.availableParallelism() - 1`. +### `--test-coverage-branches=threshold` + + + +> Stability: 1 - Experimental + +Require a minimum percent of covered branches. If code coverage does not reach +the threshold specified, the process will exit with code `1`. + ### `--test-coverage-exclude` + +> Stability: 1 - Experimental + +Require a minimum percent of covered functions. If code coverage does not reach +the threshold specified, the process will exit with code `1`. + ### `--test-coverage-include` + +> Stability: 1 - Experimental + +Require a minimum percent of covered lines. If code coverage does not reach +the threshold specified, the process will exit with code `1`. + ### `--test-force-exit`