( handler: (request: Request) => Promise<Response>, headers?: Record<string, string> )
| 45 | } |
| 46 | |
| 47 | const get = ( |
| 48 | handler: (request: Request) => Promise<Response>, |
| 49 | headers?: Record<string, string> |
| 50 | ) => handler(new Request("http://localhost/", headers === undefined ? {} : { headers })) |
| 51 | |
| 52 | describe("NodeHttpCompression", () => { |
| 53 | it.effect("advertises supported algorithms", () => |
no test coverage detected