aboutsummaryrefslogtreecommitdiff
path: root/test/mocha/glob.js
diff options
context:
space:
mode:
authorAlex Lam S.L <alexlamsl@gmail.com>2017-12-20 17:05:40 +0800
committerGitHub <noreply@github.com>2017-12-20 17:05:40 +0800
commit86ae5881b7b269dc656520ff4dddbbd365013a0b (patch)
tree1febf8ed0ae71a44c8c7bd8f104b4776eb4c5aa5 /test/mocha/glob.js
parentfac003c64f5512692e67e41a55b21c74a32a3c6b (diff)
downloadtracifyjs-86ae5881b7b269dc656520ff4dddbbd365013a0b.tar.gz
tracifyjs-86ae5881b7b269dc656520ff4dddbbd365013a0b.zip
disable `hoist_funs` by default (#2626)
Diffstat (limited to 'test/mocha/glob.js')
-rw-r--r--test/mocha/glob.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/mocha/glob.js b/test/mocha/glob.js
index b6f1e049..58c40cf0 100644
--- a/test/mocha/glob.js
+++ b/test/mocha/glob.js
@@ -11,7 +11,7 @@ describe("bin/uglifyjs with input file globs", function() {
exec(command, function(err, stdout) {
if (err) throw err;
- assert.strictEqual(stdout, 'function foo(o){print("Foo:",2*o)}var print=console.log.bind(console);\n');
+ assert.strictEqual(stdout, 'var print=console.log.bind(console);function foo(o){print("Foo:",2*o)}\n');
done();
});
});