(ready = '')
| 2890 | } |
| 2891 | |
| 2892 | function waitForeverCommand(ready = ''): string { |
| 2893 | return nodeCommand(` |
| 2894 | process.stdout.write(${JSON.stringify(ready)}); |
| 2895 | setInterval(() => {}, 1000); |
| 2896 | `); |
| 2897 | } |
| 2898 | |
| 2899 | function rawLineReaderCommand(input: { prompt?: string; label: string; lines: number }): string { |
| 2900 | return nodeCommand(` |
no test coverage detected