(contentLength?: string)
| 31 | } |
| 32 | |
| 33 | function headers(contentLength?: string): Headers { |
| 34 | const headers = new Headers() |
| 35 | if (contentLength !== undefined) headers.set('content-length', contentLength) |
| 36 | return headers |
| 37 | } |
| 38 | |
| 39 | describe('stream limits', () => { |
| 40 | it('reads a stream under the limit', async () => { |
no test coverage detected