diff --git a/test/parallel/test-npm-install.js b/test/parallel/test-npm-install.js index 00a3504fa92..5195dbc3ef9 100644 --- a/test/parallel/test-npm-install.js +++ b/test/parallel/test-npm-install.js @@ -53,8 +53,8 @@ const proc = spawn(process.execPath, args, { }); function handleExit(code, signalCode) { - assert.strictEqual(code, 0, 'npm install should run without an error'); - assert.ok(signalCode === null, 'signalCode should be null'); + assert.strictEqual(code, 0, `npm install got error code ${code}`); + assert.strictEqual(signalCode, null, `unexpected signal: ${signalCode}`); assert.doesNotThrow(function() { fs.accessSync(installDir + '/node_modules/package-name'); });