We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc05510 commit 8262d49Copy full SHA for 8262d49
test/fixtures/cluster-preload.js
@@ -5,7 +5,7 @@ const assert = require('assert');
5
// module search paths initialized from the current working directory
6
assert.ok(module.parent);
7
const expectedPaths = require('module')._nodeModulePaths(process.cwd());
8
-assert.deepEqual(module.parent.paths, expectedPaths);
+assert.deepStrictEqual(module.parent.paths, expectedPaths);
9
10
const cluster = require('cluster');
11
cluster.isMaster || process.exit(42 + cluster.worker.id); // +42 to distinguish
0 commit comments