diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2021-03-12 19:40:49 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-13 03:40:49 +0800 |
commit | 3b5d5014e09f0158a46e1729f36b5cdf7e7fd0ee (patch) | |
tree | c2d5fd5fee3d39190f0cd31793473e1605a9d15e /test/mocha | |
parent | c36c3cb47053fc83b984d3a37eb3036d6df26cbe (diff) | |
download | tracifyjs-3b5d5014e09f0158a46e1729f36b5cdf7e7fd0ee.tar.gz tracifyjs-3b5d5014e09f0158a46e1729f36b5cdf7e7fd0ee.zip |
implement `annotations` (#4763)
Diffstat (limited to 'test/mocha')
-rw-r--r-- | test/mocha/minify.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/mocha/minify.js b/test/mocha/minify.js index 4f7a5306..f80ada1e 100644 --- a/test/mocha/minify.js +++ b/test/mocha/minify.js @@ -235,8 +235,8 @@ describe("minify", function() { } }); var code = result.code; - assert.strictEqual(code, "var a=/* */function(){foo()}();"); - }) + assert.strictEqual(code, "var a=function(){foo()}();"); + }); }); describe("JS_Parse_Error", function() { |