We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa269ad commit 6f15b01Copy full SHA for 6f15b01
test/parallel/test-child-process-silent.js
@@ -76,11 +76,11 @@ if (process.argv[2] === 'pipe') {
76
parent.kill();
77
78
// Check std(out|err) pipes
79
- assert.ok(!stdoutData, 'The stdout socket was piped to parent');
80
- assert.ok(!stderrData, 'The stderr socket was piped to parent');
+ assert.ok(!stdoutData);
+ assert.ok(!stderrData);
81
82
// Check message system
83
- assert.ok(childSending, 'The child was able to send a message');
84
- assert.ok(childReciveing, 'The child was able to receive a message');
+ assert.ok(childSending);
+ assert.ok(childReciveing);
85
});
86
}
0 commit comments