diff --git a/tests/operations/tests/Zstd.mjs b/tests/operations/tests/Zstd.mjs index d6583232..eb3abed5 100644 --- a/tests/operations/tests/Zstd.mjs +++ b/tests/operations/tests/Zstd.mjs @@ -55,6 +55,36 @@ TestRegister.addTests([ } ] }, + { + name: "Zstd compress & decompress: level 1", + input: "The cat sat on the mat.", + expectedOutput: "The cat sat on the mat.", + recipeConfig: [ + { + op: "Zstd Compress", + args: ["1"] + }, + { + op: "Zstd Decompress", + args: [] + } + ] + }, + { + name: "Zstd compress & decompress: level 22", + input: "The cat sat on the mat.", + expectedOutput: "The cat sat on the mat.", + recipeConfig: [ + { + op: "Zstd Compress", + args: ["22"] + }, + { + op: "Zstd Decompress", + args: [] + } + ] + }, { name: "Zstd compress: empty input error", input: "",