()
| 393 | process.on('SIGTERM', forwardSigterm); |
| 394 | |
| 395 | const cleanup = (): void => { |
| 396 | process.removeListener('SIGINT', forwardSigint); |
| 397 | process.removeListener('SIGTERM', forwardSigterm); |
| 398 | }; |
| 399 | |
| 400 | child.on('error', (err) => { |
| 401 | cleanup(); |
no test coverage detected