mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-20 14:56:19 -04:00
feat: added test
This commit is contained in:
parent
adca9f3e40
commit
b6944b7ab6
2 changed files with 17 additions and 1 deletions
|
@ -381,7 +381,8 @@
|
|||
"LZMA Compress",
|
||||
"LZ4 Decompress",
|
||||
"LZ4 Compress",
|
||||
"LZNT1 Decompress"
|
||||
"LZNT1 Decompress",
|
||||
"ZStandard Decompress"
|
||||
]
|
||||
},
|
||||
{
|
||||
|
|
|
@ -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": []
|
||||
}
|
||||
],
|
||||
}
|
||||
]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue