@@ -827,7 +827,7 @@ inherit Node.js options from the parent process, including those specified in
827827test runner functionality:
828828
829829* ` --test ` - Prevented to avoid recursive test execution
830- * ` --experimental- test-coverage ` - Managed by the test runner
830+ * ` --test-coverage ` - Managed by the test runner
831831* ` --experimental-test-tag-filter ` - Filter values are validated by the parent
832832 process and re-emitted to child processes
833833* ` --watch ` - Watch mode is handled at the parent level
@@ -847,7 +847,7 @@ and configuration files are inherited by the child processes.
847847
848848> Stability: 1 - Experimental
849849
850- When Node.js is started with the [ ` --experimental- test-coverage ` ] [ ]
850+ When Node.js is started with the [ ` --test-coverage ` ] [ ]
851851command-line flag, code coverage is collected and statistics are reported once
852852all tests have completed. If the [ ` NODE_V8_COVERAGE ` ] [ ] environment variable is
853853used to specify a code coverage directory, the generated V8 coverage files are
@@ -894,7 +894,7 @@ There is also an lcov reporter that will generate an lcov file which can be
894894used as an in depth coverage report.
895895
896896``` bash
897- node --test --experimental- test-coverage --test-reporter=lcov --test-reporter-destination=lcov.info
897+ node --test --test-coverage --test-reporter=lcov --test-reporter-destination=lcov.info
898898```
899899
900900* No test results are reported by this reporter.
@@ -1408,7 +1408,7 @@ The following built-reporters are supported:
14081408
14091409* ` lcov `
14101410 The ` lcov ` reporter outputs test coverage when used with the
1411- [ ` --experimental- test-coverage ` ] [ ] flag.
1411+ [ ` --test-coverage ` ] [ ] flag.
14121412
14131413The exact output of these reporters is subject to change between versions of
14141414Node.js, and should not be relied on programmatically. If programmatic access
@@ -4679,7 +4679,7 @@ test.describe('my suite', (suite) => {
46794679
46804680[ TAP ] : https://testanything.org/
46814681[ Test tags ] : #test-tags
4682- [ `--experimental- test-coverage` ] : cli.md#--experimental -test-coverage
4682+ [ `--test-coverage` ] : cli.md#--test-coverage
46834683[ `--experimental-test-module-mocks` ] : cli.md#--experimental-test-module-mocks
46844684[ `--experimental-test-tag-filter` ] : cli.md#--experimental-test-tag-filterexpr
46854685[ `--import` ] : cli.md#--importmodule
0 commit comments