diff options
author | Anthony Van de Gejuchte <anthonyvdgent@gmail.com> | 2017-02-18 18:56:18 +0800 |
---|---|---|
committer | alexlamsl <alexlamsl@gmail.com> | 2017-02-18 18:56:18 +0800 |
commit | dd31d12a9110b34c1b45a72b6e1f2b64c2d7afe9 (patch) | |
tree | 1aa21b366261d20c0dfa4e5adc7d39f568499784 /test/mocha | |
parent | 7f8d72d9d37396f2da05d5d824f74bd414c30119 (diff) | |
download | tracifyjs-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.js | 2 |
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'; |