(body: unknown)
| 45 | } |
| 46 | |
| 47 | function jsonResponse(body: unknown) { |
| 48 | return new Response(JSON.stringify(body), { |
| 49 | status: 200, |
| 50 | headers: { "content-type": "application/json" }, |
| 51 | }) |
| 52 | } |
| 53 | |
| 54 | function testLayer( |
| 55 | httpHandler: (request: HttpClientRequest.HttpClientRequest) => Response, |