summaryrefslogtreecommitdiff
path: root/test/parallel/test-process-env-allowed-flags-are-documented.js
diff options
context:
space:
mode:
authorcjihrig <cjihrig@gmail.com>2020-03-12 22:39:12 -0400
committercjihrig <cjihrig@gmail.com>2020-03-15 13:29:34 -0400
commit765c3759eff73851bdc5c4f1f8f63819eed9a2e9 (patch)
treeb45258132dd614a6df98c361655d815ff1141d34 /test/parallel/test-process-env-allowed-flags-are-documented.js
parentf1d3d927e1225f0b8a959d36024788bd65600c5b (diff)
downloadnode-new-765c3759eff73851bdc5c4f1f8f63819eed9a2e9.tar.gz
build: make --without-report a no-op
This commit makes the configure --without-report flag a no-op. This commit also updates a test that depends on the report CLI flags being conditionally present. PR-URL: https://github.com/nodejs/node/pull/32242 Fixes: https://github.com/nodejs/node/issues/26293 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Diffstat (limited to 'test/parallel/test-process-env-allowed-flags-are-documented.js')
-rw-r--r--test/parallel/test-process-env-allowed-flags-are-documented.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/parallel/test-process-env-allowed-flags-are-documented.js b/test/parallel/test-process-env-allowed-flags-are-documented.js
index f356f88fe9..01999cc462 100644
--- a/test/parallel/test-process-env-allowed-flags-are-documented.js
+++ b/test/parallel/test-process-env-allowed-flags-are-documented.js
@@ -59,8 +59,6 @@ const conditionalOpts = [
filter: (opt) => opt === '--icu-data-dir' },
{ include: process.features.inspector,
filter: (opt) => opt.startsWith('--inspect') || opt === '--debug-port' },
- { include: process.config.variables.node_report,
- filter: (opt) => opt.includes('-report') },
];
documented.forEach((opt) => {
conditionalOpts.forEach(({ include, filter }) => {