(status: number, statusText = "Not Found")
| 16 | } |
| 17 | |
| 18 | function makeErrorFetch(status: number, statusText = "Not Found"): typeof fetch { |
| 19 | return (async () => new Response("nope", { status, statusText })) as unknown as typeof fetch; |
| 20 | } |
| 21 | |
| 22 | describe("cloud/download", () => { |
| 23 | let dir: string; |