(request: Parameters<typeof HttpClientResponse.fromWeb>[0], body: unknown, status = 200)
| 47 | ) |
| 48 | |
| 49 | const json = (request: Parameters<typeof HttpClientResponse.fromWeb>[0], body: unknown, status = 200) => |
| 50 | HttpClientResponse.fromWeb( |
| 51 | request, |
| 52 | new Response(JSON.stringify(body), { |
| 53 | status, |
| 54 | headers: { "content-type": "application/json" }, |
| 55 | }), |
| 56 | ) |
| 57 | |
| 58 | const wellKnownAuth = (url: string) => |
| 59 | Layer.mock(Auth.Service)({ |
no outgoing calls
no test coverage detected