()
| 43 | } |
| 44 | |
| 45 | async function testGzipLargeData() { |
| 46 | // 100KB of repeated text - exercises multi-chunk path |
| 47 | const input = 'gzip large data test. '.repeat(5000); |
| 48 | const result = await roundTrip(input, compressGzip(), decompressGzip()); |
| 49 | assert.strictEqual(result, input); |
| 50 | } |
| 51 | |
| 52 | async function testGzipActuallyCompresses() { |
| 53 | const input = 'Repeated data compresses well. '.repeat(1000); |
no test coverage detected
searching dependent graphs…