()
| 177 | // ============================================================================= |
| 178 | |
| 179 | async function testEmptyInputGzip() { |
| 180 | const result = await roundTrip('', compressGzip(), decompressGzip()); |
| 181 | assert.strictEqual(result, ''); |
| 182 | } |
| 183 | |
| 184 | async function testEmptyInputDeflate() { |
| 185 | const result = await roundTrip('', compressDeflate(), decompressDeflate()); |
no test coverage detected
searching dependent graphs…