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 eb8f567 commit ff81da0Copy full SHA for ff81da0
test/parallel/test-inspect-support-for-node_options.js
@@ -2,7 +2,6 @@
2
const common = require('../common');
3
const cluster = require('cluster');
4
const assert = require('assert');
5
-const numCPUs = require('os').cpus().length;
6
7
common.skipIfInspectorDisabled();
8
@@ -14,7 +13,7 @@ function checkForInspectSupport(flag) {
14
13
process.env.NODE_OPTIONS = flag;
15
16
if (cluster.isMaster) {
17
- for (let i = 0; i < numCPUs; i++) {
+ for (let i = 0; i < 2; i++) {
18
cluster.fork();
19
}
20
0 commit comments