mirror of
https://github.com/gchq/CyberChef
synced 2025-01-14 13:33:54 +00:00
34 lines
689 B
JavaScript
34 lines
689 B
JavaScript
|
/**
|
||
|
* Base58 tests.
|
||
|
*
|
||
|
* @author tlwr [toby@toby.codes
|
||
|
*
|
||
|
* @copyright Crown Copyright 2017
|
||
|
* @license Apache-2.0
|
||
|
*
|
||
|
*/
|
||
|
TestRegister.addTests([
|
||
|
{
|
||
|
name: "To Morse Code: 'SOS'",
|
||
|
input: "SOS",
|
||
|
expectedOutput: "... --- ...",
|
||
|
recipeConfig: [
|
||
|
{
|
||
|
op: "To Morse Code",
|
||
|
args: ["-/.", "Space", "Line feed"],
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
{
|
||
|
name: "From Morse Code '... --- ...'",
|
||
|
input: "... --- ...",
|
||
|
expectedOutput: "SOS",
|
||
|
recipeConfig: [
|
||
|
{
|
||
|
op: "From Morse Code",
|
||
|
args: ["Space", "Line feed"],
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
]);
|