(child: ChildProcessWithoutNullStreams)
| 708 | }; |
| 709 | |
| 710 | const waitForChildExit = (child: ChildProcessWithoutNullStreams): Promise<void> => |
| 711 | new Promise((resolve) => { |
| 712 | if (child.exitCode !== null || child.signalCode !== null) { |
| 713 | resolve(); |
| 714 | return; |
| 715 | } |
| 716 | child.once("exit", () => resolve()); |
| 717 | }); |
| 718 | |
| 719 | const killRestartPausePhases = [ |
| 720 | "building", |
no test coverage detected