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 bd74fb4 commit 53f0884Copy full SHA for 53f0884
test/parallel/test-child-process-silent.js
@@ -97,11 +97,11 @@ if (process.argv[2] === 'pipe') {
97
parent.kill();
98
99
// Check std(out|err) pipes
100
- assert.ok(!stdoutData, 'The stdout socket was piped to parent');
101
- assert.ok(!stderrData, 'The stderr socket was piped to parent');
+ assert.ok(!stdoutData);
+ assert.ok(!stderrData);
102
103
// Check message system
104
- assert.ok(childSending, 'The child was able to send a message');
105
- assert.ok(childReceiving, 'The child was able to receive a message');
+ assert.ok(childSending);
+ assert.ok(childReceiving);
106
});
107
}
0 commit comments