()
| 113 | } |
| 114 | |
| 115 | function testZstdLargeData() { |
| 116 | const input = 'zstd sync large data test. '.repeat(5000); |
| 117 | const result = roundTrip(input, compressZstdSync(), decompressZstdSync()); |
| 118 | assert.strictEqual(result, input); |
| 119 | } |
| 120 | |
| 121 | // ============================================================================= |
| 122 | // Cross-algorithm: compress async-compatible, decompress sync (and vice versa) |
no test coverage detected
searching dependent graphs…