0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00

test: fix test-process-exec-argv flakiness

Wait for the `close` event before parsing the child stdout output.

Fixes: https://github.com/nodejs/node/issues/6480
PR-URL: https://github.com/nodejs/node/pull/6575
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
This commit is contained in:
Santiago Gimeno 2016-05-03 13:22:53 +02:00
parent 0e2b25034e
commit dffafde7f1

View File

@ -15,7 +15,7 @@ if (process.argv[2] === 'child') {
out += chunk;
});
child.on('exit', function() {
child.on('close', function() {
assert.deepStrictEqual(JSON.parse(out), execArgv);
});
}