test: remove literal messages
PR-URL: https://github.com/nodejs/node/pull/15938 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
This commit is contained in:
parent
bd74fb4cee
commit
53f08841f8
@ -97,11 +97,11 @@ if (process.argv[2] === 'pipe') {
|
||||
parent.kill();
|
||||
|
||||
// Check std(out|err) pipes
|
||||
assert.ok(!stdoutData, 'The stdout socket was piped to parent');
|
||||
assert.ok(!stderrData, 'The stderr socket was piped to parent');
|
||||
assert.ok(!stdoutData);
|
||||
assert.ok(!stderrData);
|
||||
|
||||
// Check message system
|
||||
assert.ok(childSending, 'The child was able to send a message');
|
||||
assert.ok(childReceiving, 'The child was able to receive a message');
|
||||
assert.ok(childSending);
|
||||
assert.ok(childReceiving);
|
||||
});
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user