From 900125d92e786c5b8d81f48a3d6dbcdae8aaf7b3 Mon Sep 17 00:00:00 2001 From: garronej Date: Sat, 1 Apr 2023 23:00:03 +0200 Subject: [PATCH] fmt --- test/bin/tools/trimIndet.spec.ts | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/test/bin/tools/trimIndet.spec.ts b/test/bin/tools/trimIndet.spec.ts index c6a2f37f..cad19a39 100644 --- a/test/bin/tools/trimIndet.spec.ts +++ b/test/bin/tools/trimIndet.spec.ts @@ -54,13 +54,12 @@ ipsum }); it("inderpolates preserving new-lines in the interpolated bits", () => { - const a = ["ipsum", "dolor", "sit"].join('\n') + const a = ["ipsum", "dolor", "sit"].join("\n"); const txt = trimIndent` lorem ${a} amet - ` - assert.equal(txt, ['lorem', 'ipsum', 'dolor', 'sit', 'amet'].join('\n')) - }) - -}); \ No newline at end of file + `; + assert.equal(txt, ["lorem", "ipsum", "dolor", "sit", "amet"].join("\n")); + }); +});