Fix indent

This commit is contained in:
john19696 2022-07-25 17:55:05 +01:00
parent c654258783
commit 22e8709dc8

View File

@ -4,10 +4,10 @@
* @license Apache-2.0 * @license Apache-2.0
*/ */
import TestRegister from "../../lib/TestRegister.mjs"; import TestRegister from "../../lib/TestRegister.mjs";
TestRegister.addTests([ TestRegister.addTests([
{ {
name: "Escape Smart Characters", name: "Escape Smart Characters",
input: "“”—‘’ →©…", input: "“”—‘’ →©…",
expectedOutput: "\"\"--'' -->(C)...", expectedOutput: "\"\"--'' -->(C)...",
@ -19,25 +19,25 @@
], ],
}, },
{ {
name: "Escape Smart Characters - Remove", name: "Escape Smart Characters - Remove",
input: "“”—‘’ →©…", input: "“”—‘’ →©…",
expectedOutput: " ", expectedOutput: " ",
recipeConfig: [ recipeConfig: [
{ {
op: "Escape Smart Characters", op: "Escape Smart Characters",
args: ["Remove"], args: ["Remove"],
}, },
], ],
}, },
{ {
name: "Escape Smart Characters - Replace", name: "Escape Smart Characters - Replace",
input: "“”—‘’ →©…", input: "“”—‘’ →©…",
expectedOutput: "..... ...", expectedOutput: "..... ...",
recipeConfig: [ recipeConfig: [
{ {
op: "Escape Smart Characters", op: "Escape Smart Characters",
args: ["Replace with '.'"], args: ["Replace with '.'"],
}, },
], ],
}, },
]); ]);