From e82d80e8fcedb8eceb4a89e0f5f26a1af73c040c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Donny/=EA=B0=95=EB=8F=99=EC=9C=A4?= Date: Sun, 20 Nov 2022 09:51:33 +0900 Subject: [PATCH] Revert "test: update" This reverts commit ac27afde97a37eae1aa4701b96e080fb070a5920. --- node-swc/__tests__/minify_test.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/node-swc/__tests__/minify_test.mjs b/node-swc/__tests__/minify_test.mjs index bfd50dcd1331..f090a2d55455 100644 --- a/node-swc/__tests__/minify_test.mjs +++ b/node-swc/__tests__/minify_test.mjs @@ -213,7 +213,7 @@ describe("should remove comments", () => { expect(code).toMatchInlineSnapshot(` "(function(){/** * @license - */ const o=Math.random()+\\"_\\"+Math.random();console.log(o)})();" + */const o=Math.random()+\\"_\\"+Math.random();console.log(o)})();" `); }); it("should remove comment near to license", async () => { @@ -241,7 +241,7 @@ describe("should remove comments", () => { expect(code).toMatchInlineSnapshot(` "(function(){/** * @license - */ const o=Math.random()+\\"_\\"+Math.random();console.log(o)})();" + */const o=Math.random()+\\"_\\"+Math.random();console.log(o)})();" `); }); });