mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
793d8719eb
It can happen that first data chunk received in stdout is not exactly `'debug> '`. Make sure the exit condition is met. PR-URL: https://github.com/nodejs/node/pull/10316 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Italo A. Casas <me@italoacasas.com>
15 lines
299 B
JavaScript
15 lines
299 B
JavaScript
'use strict';
|
|
|
|
require('../common');
|
|
const spawn = require('child_process').spawn;
|
|
|
|
const proc = spawn(process.execPath, ['debug', 'foo']);
|
|
proc.stdout.setEncoding('utf8');
|
|
|
|
let output = '';
|
|
proc.stdout.on('data', (data) => {
|
|
output += data;
|
|
if (output.includes('debug> '))
|
|
proc.kill();
|
|
});
|