We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fff9ff commit 6c3e504Copy full SHA for 6c3e504
deps/node-inspect/test/cli/address.test.js
@@ -16,7 +16,9 @@ function launchTarget(...args) {
16
};
17
childProc.on('exit', onExit);
18
childProc.stderr.setEncoding('utf8');
19
- childProc.stderr.on('data', (data) => {
+ let data = '';
20
+ childProc.stderr.on('data', (chunk) => {
21
+ data += chunk;
22
const ret = kDebuggerMsgReg.exec(data);
23
childProc.removeListener('exit', onExit);
24
if (ret) {
0 commit comments