()
| 192 | } |
| 193 | |
| 194 | async function testEmptyInputZstd() { |
| 195 | const result = await roundTrip('', compressZstd(), decompressZstd()); |
| 196 | assert.strictEqual(result, ''); |
| 197 | } |
| 198 | |
| 199 | // ============================================================================= |
| 200 | // Chained transforms - compress with one, then another, decompress in reverse |
no test coverage detected
searching dependent graphs…