( handler: (request: Request) => Promise<Response>, headers?: Record<string, string> )
| 40 | } |
| 41 | |
| 42 | const get = ( |
| 43 | handler: (request: Request) => Promise<Response>, |
| 44 | headers?: Record<string, string> |
| 45 | ) => handler(new Request("http://localhost/", headers === undefined ? {} : { headers })) |
| 46 | |
| 47 | describe("DenoHttpCompression", () => { |
| 48 | it.effect("advertises supported algorithms", () => |
no test coverage detected