()
| 107 | // ============================================================================= |
| 108 | |
| 109 | function testZstdRoundTrip() { |
| 110 | const input = 'Hello, sync zstd compression!'; |
| 111 | const result = roundTrip(input, compressZstdSync(), decompressZstdSync()); |
| 112 | assert.strictEqual(result, input); |
| 113 | } |
| 114 | |
| 115 | function testZstdLargeData() { |
| 116 | const input = 'zstd sync large data test. '.repeat(5000); |
no test coverage detected
searching dependent graphs…