()
| 255 | let stderrCapture = ''; |
| 256 | |
| 257 | const abortHandler = () => { |
| 258 | killProcessByChildProcess(child, false).catch(() => {}); |
| 259 | resolve({ exitCode: null, stderr: stderrCapture }); |
| 260 | }; |
| 261 | this.abortController.signal.addEventListener('abort', abortHandler); |
| 262 | |
| 263 | const cleanup = () => { |
nothing calls this directly
no test coverage detected