mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-14 10:06:58 -04:00
19 lines
438 B
JavaScript
19 lines
438 B
JavaScript
/* @author sw5678
|
|
* @copyright Crown Copyright 2024
|
|
* @license Apache-2.0
|
|
*/
|
|
import TestRegister from "../../lib/TestRegister.mjs";
|
|
|
|
TestRegister.addTests([
|
|
{
|
|
"name": "AlternatingCaps: Basic Example",
|
|
"input": "Hello, world!",
|
|
"expectedOutput": "hElLo, WoRlD!",
|
|
"recipeConfig": [
|
|
{
|
|
"op": "Alternating Caps",
|
|
"args": []
|
|
},
|
|
],
|
|
}
|
|
]);
|