From 5e014f98ecbe9bdb500789d666465b5083ef030b Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Thu, 3 Aug 2023 00:03:04 +0200 Subject: [PATCH] style: format code --- test/index.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/index.test.ts b/test/index.test.ts index acef3f0..7e4d3fa 100644 --- a/test/index.test.ts +++ b/test/index.test.ts @@ -151,7 +151,7 @@ describe("destr", () => { for (const testCase of testCases) { expect(() => safeDestr(testCase.input)).toThrowError( - testCase.output || "" + testCase.output || "", ); } }); @@ -174,7 +174,7 @@ describe("destr", () => { for (const testCase of testCases) { expect(() => safeDestr(testCase.input)).toThrowError( - "[destr] Possible prototype pollution" + "[destr] Possible prototype pollution", ); } });