()
| 328 | }; |
| 329 | |
| 330 | const clearHardKillTimer = (): void => { |
| 331 | if (hardKillTimer) clearTimeout(hardKillTimer); |
| 332 | hardKillTimer = undefined; |
| 333 | }; |
| 334 | |
| 335 | const killChild = (signal: NodeJS.Signals): void => { |
| 336 | if (child.exitCode !== null || child.killed || child.pid === undefined) return; |
no outgoing calls
no test coverage detected