From bd2f6d8feed011be22218203740ed57d5155ac49 Mon Sep 17 00:00:00 2001 From: Waldemar Reusch Date: Sat, 1 Apr 2023 22:52:09 +0200 Subject: [PATCH] style: move loose test into test suite --- test/bin/tools/trimIndet.spec.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/bin/tools/trimIndet.spec.ts b/test/bin/tools/trimIndet.spec.ts index 07dd8af5..c6a2f37f 100644 --- a/test/bin/tools/trimIndet.spec.ts +++ b/test/bin/tools/trimIndet.spec.ts @@ -52,7 +52,6 @@ ipsum assert.equal(txt, ["lorem", String(d), "ipsum"].join("\n")); }); -}); it("inderpolates preserving new-lines in the interpolated bits", () => { const a = ["ipsum", "dolor", "sit"].join('\n') @@ -63,3 +62,5 @@ ipsum ` assert.equal(txt, ['lorem', 'ipsum', 'dolor', 'sit', 'amet'].join('\n')) }) + +}); \ No newline at end of file