mirror of
https://github.com/nodejs/node.git
synced 2025-05-08 01:35:51 +00:00

Instead of having a custom, static, hand-written string that is being printed to stdout when `--help` is present, generate it in JS when requested. PR-URL: https://github.com/nodejs/node/pull/22490 Reviewed-By: Michaël Zasso <targos@protonmail.com>
15 lines
458 B
JavaScript
15 lines
458 B
JavaScript
/* eslint-disable node-core/required-modules */
|
|
|
|
'use strict';
|
|
|
|
// Ordinarily test files must require('common') but that action causes
|
|
// the global console to be compiled, defeating the purpose of this test.
|
|
// This makes sure no additional files are added without carefully considering
|
|
// lazy loading. Please adjust the value if necessary.
|
|
|
|
const list = process.moduleLoadList.slice();
|
|
|
|
const assert = require('assert');
|
|
|
|
assert(list.length <= 74, list);
|