aboutsummaryrefslogtreecommitdiff
path: root/test/mocha/comment_before_constant.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/mocha/comment_before_constant.js')
-rw-r--r--test/mocha/comment_before_constant.js22
1 files changed, 0 insertions, 22 deletions
diff --git a/test/mocha/comment_before_constant.js b/test/mocha/comment_before_constant.js
deleted file mode 100644
index 9b69e078..00000000
--- a/test/mocha/comment_before_constant.js
+++ /dev/null
@@ -1,22 +0,0 @@
-var Uglify = require('../../');
-var assert = require("assert");
-
-describe("comment before constant", function() {
- var js = 'function f() { /*c1*/ var /*c2*/ foo = /*c3*/ false; return foo; }';
-
- it("Should test comment before constant is retained and output after mangle.", function() {
- var result = Uglify.minify(js, {
- compress: { collapse_vars: false, reduce_vars: false },
- output: { comments: true },
- });
- assert.strictEqual(result.code, 'function f(){/*c1*/var/*c2*/n=/*c3*/!1;return n}');
- });
-
- it("Should test code works when comments disabled.", function() {
- var result = Uglify.minify(js, {
- compress: { collapse_vars: false, reduce_vars: false },
- output: { comments: false },
- });
- assert.strictEqual(result.code, 'function f(){var n=!1;return n}');
- });
-});