(child: StudioChildProcess)
| 710 | } |
| 711 | |
| 712 | function waitForChildClose(child: StudioChildProcess): Promise<void> { |
| 713 | return new Promise<void>((resolveClose) => { |
| 714 | child.on("close", () => resolveClose()); |
| 715 | }); |
| 716 | } |
| 717 | |
| 718 | function attachStudioReadyHandler( |
| 719 | child: StudioChildProcess, |
no test coverage detected