(body: unknown)
| 24 | }; |
| 25 | |
| 26 | function jsonRes(body: unknown): Response { |
| 27 | return { |
| 28 | status: 200, |
| 29 | ok: true, |
| 30 | headers: new Headers({ 'Content-Type': 'application/json' }), |
| 31 | json: async () => body, |
| 32 | } as Response; |
| 33 | } |
| 34 | |
| 35 | const originalFetch = globalThis.fetch; |
| 36 |