(status: number, contentLength?: string)
| 9 | type FetchImpl = NonNullable<ZipUrlValidationOptions['fetchImpl']>; |
| 10 | |
| 11 | function createResponse(status: number, contentLength?: string): Response { |
| 12 | return buildResponse({ |
| 13 | status, |
| 14 | headers: contentLength === undefined ? undefined : { 'content-length': contentLength }, |
| 15 | }); |
| 16 | } |
| 17 | |
| 18 | describe('zip validation', () => { |
| 19 | afterEach(() => { |
no test coverage detected