8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 831256c commit d9df3f7Copy full SHA for d9df3f7
doc/node-config-schema.json
@@ -665,6 +665,9 @@
665
"experimental-test-module-mocks": {
666
"type": "boolean"
667
},
668
+ "test": {
669
+ "type": "boolean"
670
+ },
671
"test-concurrency": {
672
"type": "number"
673
src/node_options.cc
@@ -839,7 +839,9 @@ EnvironmentOptionsParser::EnvironmentOptionsParser() {
839
AddOption("--test",
840
"launch test runner on startup",
841
&EnvironmentOptions::test_runner,
842
- kDisallowedInEnvvar);
+ kDisallowedInEnvvar,
843
+ false,
844
+ OptionNamespaces::kTestRunnerNamespace);
845
AddOption("--test-concurrency",
846
"specify test runner concurrency",
847
&EnvironmentOptions::test_runner_concurrency,
0 commit comments