Create line break test

This commit is contained in:
Thomas 2025-06-07 16:49:21 +01:00
parent 58ecadf9c4
commit c96b942fc2

View file

@ -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]
}
]
}
]);