()
| 182 | } |
| 183 | |
| 184 | async function testEmptyInputDeflate() { |
| 185 | const result = await roundTrip('', compressDeflate(), decompressDeflate()); |
| 186 | assert.strictEqual(result, ''); |
| 187 | } |
| 188 | |
| 189 | async function testEmptyInputBrotli() { |
| 190 | const result = await roundTrip('', compressBrotli(), decompressBrotli()); |
no test coverage detected
searching dependent graphs…