feat: added test

This commit is contained in:
Ferdinand Linnenberg 2024-09-17 10:58:58 +02:00
parent adca9f3e40
commit b6944b7ab6
2 changed files with 17 additions and 1 deletions

View file

@ -381,7 +381,8 @@
"LZMA Compress", "LZMA Compress",
"LZ4 Decompress", "LZ4 Decompress",
"LZ4 Compress", "LZ4 Compress",
"LZNT1 Decompress" "LZNT1 Decompress",
"ZStandard Decompress"
] ]
}, },
{ {

View file

@ -105,4 +105,19 @@ TestRegister.addTests([
} }
], ],
}, },
{
name: "ZStandard Decompress",
input: "KLUv/QRYwQAAVGhlIGNhdCBzYXQgb24gdGhlIG1hdC4KpvSd8w==",
expectedOutput: "The cat sat on the mat.",
recipeConfig: [
{
"op": "From Base64",
"args": []
},
{
"op": "ZStandard Decompress",
"args": []
}
],
}
]); ]);