(ms: number)
| 9 | export const CDP_GUEST_PORT = 9222; |
| 10 | |
| 11 | const sleep = (ms: number): Promise<void> => new Promise((r) => setTimeout(r, ms)); |
| 12 | |
| 13 | /** Poll until an HTTP endpoint inside the guest answers (any status — a 401 from |
| 14 | * the bearer-gated daemon still means "up"). HTTP, not lsof: the app may be |
no outgoing calls
no test coverage detected