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 a7bb974 commit 6529334Copy full SHA for 6529334
doc/node-config-schema.json
@@ -607,6 +607,9 @@
607
"experimental-test-module-mocks": {
608
"type": "boolean"
609
},
610
+ "test": {
611
+ "type": "boolean"
612
+ },
613
"test-concurrency": {
614
"type": "number"
615
src/node_options.cc
@@ -819,7 +819,9 @@ EnvironmentOptionsParser::EnvironmentOptionsParser() {
819
AddOption("--test",
820
"launch test runner on startup",
821
&EnvironmentOptions::test_run 5F82 ner,
822
- kDisallowedInEnvvar);
+ kDisallowedInEnvvar,
823
+ false,
824
+ OptionNamespaces::kTestRunnerNamespace);
825
AddOption("--test-concurrency",
826
"specify test runner concurrency",
827
&EnvironmentOptions::test_runner_concurrency,
0 commit comments