aboutsummaryrefslogtreecommitdiff
path: root/test/mocha
diff options
context:
space:
mode:
authorAnthony Van de Gejuchte <anthonyvdgent@gmail.com>2017-02-18 18:56:18 +0800
committeralexlamsl <alexlamsl@gmail.com>2017-02-18 18:56:18 +0800
commitdd31d12a9110b34c1b45a72b6e1f2b64c2d7afe9 (patch)
tree1aa21b366261d20c0dfa4e5adc7d39f568499784 /test/mocha
parent7f8d72d9d37396f2da05d5d824f74bd414c30119 (diff)
downloadtracifyjs-dd31d12a9110b34c1b45a72b6e1f2b64c2d7afe9.tar.gz
tracifyjs-dd31d12a9110b34c1b45a72b6e1f2b64c2d7afe9.zip
Improve optimizing `function() { if(c){return foo} bar();}`
closes #1437
Diffstat (limited to 'test/mocha')
-rw-r--r--test/mocha/cli.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/mocha/cli.js b/test/mocha/cli.js
index a8de05c5..c5b571bd 100644
--- a/test/mocha/cli.js
+++ b/test/mocha/cli.js
@@ -4,7 +4,7 @@ var exec = require("child_process").exec;
describe("bin/uglifyjs", function () {
var uglifyjscmd = '"' + process.argv[0] + '" bin/uglifyjs';
it("should produce a functional build when using --self", function (done) {
- this.timeout(5000);
+ this.timeout(15000);
var command = uglifyjscmd + ' --self -cm --wrap WrappedUglifyJS';