(encoding: string)
| 17 | const html = '<h1>Hello World</h1>' |
| 18 | |
| 19 | function eventFor(encoding: string) { |
| 20 | return mockEvent('/', { headers: { 'accept-encoding': encoding } }) |
| 21 | } |
| 22 | |
| 23 | const decoders: Record<string, (input: Buffer) => Buffer> = { |
| 24 | gzip: zlib.gunzipSync, |