We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13cc6a0 commit 3d35930Copy full SHA for 3d35930
test/parallel/test-child-process-validate-stdio.js
@@ -19,10 +19,10 @@ assert.throws(function() {
19
{
20
const stdio1 = [];
21
const result = _validateStdio(stdio1, false);
22
- assert.equal(stdio1.length, 3);
23
- assert.equal(result.hasOwnProperty('stdio'), true);
24
- assert.equal(result.hasOwnProperty('ipc'), true);
25
- assert.equal(result.hasOwnProperty('ipcFd'), true);
+ assert.strictEqual(stdio1.length, 3);
+ assert.strictEqual(result.hasOwnProperty('stdio'), true);
+ assert.strictEqual(result.hasOwnProperty('ipc'), true);
+ assert.strictEqual(result.hasOwnProperty('ipcFd'), true);
26
}
27
28
// should throw if stdio has ipc and sync is true
0 commit comments