From a129912bdf607d60480a8767264329dba6103f14 Mon Sep 17 00:00:00 2001 From: hemengke1997 <49073282+hemengke1997@users.noreply.github.com> Date: Thu, 16 Feb 2023 13:57:58 +0800 Subject: [PATCH] fix: tests --- __test__/utils.spec.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/__test__/utils.spec.ts b/__test__/utils.spec.ts index de72d26..af30f2a 100644 --- a/__test__/utils.spec.ts +++ b/__test__/utils.spec.ts @@ -36,7 +36,6 @@ describe('vite-plugin-public-typescript', () => { test('should eol', () => { const json = JSON.stringify({ a: 'b' }, null, 2) const eolJson = eol(json) - expect(json).not.eq(eolJson) expect(eolJson).toEqual(`{${linebreak} "a": "b"${linebreak}}`) })