()
| 63 | // ============================================================================= |
| 64 | |
| 65 | async function testDeflateRoundTrip() { |
| 66 | const input = 'Hello, deflate compression!'; |
| 67 | const result = await roundTrip(input, compressDeflate(), decompressDeflate()); |
| 68 | assert.strictEqual(result, input); |
| 69 | } |
| 70 | |
| 71 | async function testDeflateLargeData() { |
| 72 | const input = 'deflate large data test. '.repeat(5000); |
no test coverage detected
searching dependent graphs…