Better test coverage

This commit is contained in:
John L 2021-12-20 10:12:56 +00:00
parent e3ff47000a
commit 6b6ae83c81
2 changed files with 23 additions and 2 deletions

View file

@ -18,5 +18,26 @@
},
],
},
{
name: "Escape Smart Characters - Remove",
input: "“”—‘’ →©…",
expectedOutput: " ",
recipeConfig: [
{
op: "Escape Smart Characters",
args: ["Remove"],
},
],
},
{
name: "Escape Smart Characters - Replace",
input: "“”—‘’ →©…",
expectedOutput: "..... ...",
recipeConfig: [
{
op: "Escape Smart Characters",
args: ["Replace with '.'"],
},
],
},
]);
g