(message: string)
| 11 | const READY_TIMEOUT_MS = 45_000; |
| 12 | |
| 13 | const fail = (message: string): never => { |
| 14 | throw new Error(`[smoke-packed-apps] FAIL: ${message}`); |
| 15 | }; |
| 16 | |
| 17 | const requestJson = async <T>(origin: string, path: string, init: RequestInit = {}): Promise<T> => { |
| 18 | const response = await fetch(new URL(path, origin), { |
no outgoing calls
no test coverage detected