(data: Buffer)
| 309 | }; |
| 310 | |
| 311 | const onStderr = (data: Buffer) => { |
| 312 | stderr += data.toString(); |
| 313 | resetTimeout(); |
| 314 | showCurrentOutput(); |
| 315 | }; |
| 316 | |
| 317 | child.stdout.on("data", onStdout); |
| 318 | child.stderr.on("data", onStderr); |
nothing calls this directly
no test coverage detected