()
| 71 | // ============================================================================= |
| 72 | |
| 73 | function testDeflateRoundTrip() { |
| 74 | const input = 'Hello, sync deflate compression!'; |
| 75 | const result = roundTrip(input, compressDeflateSync(), |
| 76 | decompressDeflateSync()); |
| 77 | assert.strictEqual(result, input); |
| 78 | } |
| 79 | |
| 80 | function testDeflateLargeData() { |
| 81 | const input = 'deflate sync large data test. '.repeat(5000); |
no test coverage detected
searching dependent graphs…