From 458b38961009c24fc32eee8eb0ae1a8a43a75465 Mon Sep 17 00:00:00 2001 From: cjihrig Date: Thu, 18 Jul 2024 11:45:59 -0400 Subject: [PATCH] doc: move --test-coverage-{ex,in}clude to proper location This commit moves the documentation for two CLI flags to the proper sorted location. --- doc/api/cli.md | 68 +++++++++++++++++++++++++------------------------- 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/doc/api/cli.md b/doc/api/cli.md index a41f5c55d3f405..d11f2bb7cc5cf1 100644 --- a/doc/api/cli.md +++ b/doc/api/cli.md @@ -490,40 +490,6 @@ For example, to run a module with "development" resolutions: node -C development app.js ``` -### `--test-coverage-exclude` - - - -> Stability: 1 - Experimental - -Excludes specific files from code coverage using a glob pattern, which can match -both absolute and relative file paths. - -This option may be specified multiple times to exclude multiple glob patterns. - -If both `--test-coverage-exclude` and `--test-coverage-include` are provided, -files must meet **both** criteria to be included in the coverage report. - -### `--test-coverage-include` - - - -> Stability: 1 - Experimental - -Includes specific files in code coverage using a glob pattern, which can match -both absolute and relative file paths. - -This option may be specified multiple times to include multiple glob patterns. - -If both `--test-coverage-exclude` and `--test-coverage-include` are provided, -files must meet **both** criteria to be included in the coverage report. - ### `--cpu-prof` + +> Stability: 1 - Experimental + +Excludes specific files from code coverage using a glob pattern, which can match +both absolute and relative file paths. + +This option may be specified multiple times to exclude multiple glob patterns. + +If both `--test-coverage-exclude` and `--test-coverage-include` are provided, +files must meet **both** criteria to be included in the coverage report. + +### `--test-coverage-include` + + + +> Stability: 1 - Experimental + +Includes specific files in code coverage using a glob pattern, which can match +both absolute and relative file paths. + +This option may be specified multiple times to include multiple glob patterns. + +If both `--test-coverage-exclude` and `--test-coverage-include` are provided, +files must meet **both** criteria to be included in the coverage report. + ### `--test-force-exit`