summaryrefslogtreecommitdiff
path: root/test/parallel/test-npm-install.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-npm-install.js')
-rw-r--r--test/parallel/test-npm-install.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-npm-install.js b/test/parallel/test-npm-install.js
index c7f216fce5..00a3504fa9 100644
--- a/test/parallel/test-npm-install.js
+++ b/test/parallel/test-npm-install.js
@@ -53,7 +53,7 @@ const proc = spawn(process.execPath, args, {
});
function handleExit(code, signalCode) {
- assert.equal(code, 0, 'npm install should run without an error');
+ assert.strictEqual(code, 0, 'npm install should run without an error');
assert.ok(signalCode === null, 'signalCode should be null');
assert.doesNotThrow(function() {
fs.accessSync(installDir + '/node_modules/package-name');