mirror of
https://github.com/gchq/CyberChef.git
synced 2025-06-14 10:14:53 -04:00
21 lines
470 B
JavaScript
21 lines
470 B
JavaScript
/**
|
|
* @author ThomasNotTom
|
|
* @copyright Crown Copyright 2025
|
|
* @license Apache-2.0
|
|
*/
|
|
import TestRegister from "../../lib/TestRegister.mjs";
|
|
|
|
TestRegister.addTests([
|
|
{
|
|
// Check line remains unbroken
|
|
name: "Line Break: No break",
|
|
input: "Hello, world!",
|
|
expectedOutput: "Hello, world!",
|
|
recipeConfig: [
|
|
{
|
|
"op": "Line Break",
|
|
"args": [32, false]
|
|
}
|
|
]
|
|
}
|
|
]);
|