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", ); } });