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 10502bc commit 2bed534Copy full SHA for 2bed534
test/parallel/test-cli-node-print-help.js
@@ -24,15 +24,14 @@ function startPrintHelpTest() {
24
function validateNodePrintHelp() {
25
const config = process.config;
26
const HAVE_OPENSSL = common.hasCrypto;
27
- const NODE_FIPS_MODE = fipsMode;
28
const NODE_HAVE_I18N_SUPPORT = common.hasIntl;
29
const HAVE_INSPECTOR = config.variables.v8_enable_inspector === 1;
30
31
const cliHelpOptions = [
32
{ compileConstant: HAVE_OPENSSL,
33
flags: [ '--openssl-config=...', '--tls-cipher-list=...',
34
'--use-bundled-ca', '--use-openssl-ca' ] },
35
- { compileConstant: NODE_FIPS_MODE,
+ { compileConstant: fipsMode,
36
flags: [ '--enable-fips', '--force-fips' ] },
37
{ compileConstant: NODE_HAVE_I18N_SUPPORT,
38
flags: [ '--icu-data-dir=...', 'NODE_ICU_DATA' ] },
0 commit comments