()
| 37 | // ============================================================================= |
| 38 | |
| 39 | function testGzipRoundTrip() { |
| 40 | const input = 'Hello, sync gzip compression!'; |
| 41 | const result = roundTrip(input, compressGzipSync(), decompressGzipSync()); |
| 42 | assert.strictEqual(result, input); |
| 43 | } |
| 44 | |
| 45 | function testGzipLargeData() { |
| 46 | const input = 'gzip sync large data test. '.repeat(5000); |
no test coverage detected