()
| 37 | // ============================================================================= |
| 38 | |
| 39 | async function testGzipRoundTrip() { |
| 40 | const input = 'Hello, gzip compression!'; |
| 41 | const result = await roundTrip(input, compressGzip(), decompressGzip()); |
| 42 | assert.strictEqual(result, input); |
| 43 | } |
| 44 | |
| 45 | async function testGzipLargeData() { |
| 46 | // 100KB of repeated text - exercises multi-chunk path |
no test coverage detected