diff --git a/tests/operations/tests/LineBreak.mjs b/tests/operations/tests/LineBreak.mjs new file mode 100644 index 00000000..9ebe07d7 --- /dev/null +++ b/tests/operations/tests/LineBreak.mjs @@ -0,0 +1,21 @@ +/** + * @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] + } + ] + } +]);