(ready: boolean)
| 213 | ); |
| 214 | let stderr = ""; |
| 215 | const settle = (ready: boolean) => resolve({ child, ready, stderr }); |
| 216 | const timer = setTimeout(() => settle(false), 60_000); |
| 217 | child.stdout.on("data", (chunk: Buffer) => { |
| 218 | if (/Daemon ready on http:\/\//.test(chunk.toString())) { |
no test coverage detected