From 68f72b3faf808c37c31d4d3e9dd09876f1371dd5 Mon Sep 17 00:00:00 2001 From: kzc Date: Sat, 18 Nov 2017 18:14:43 -0500 Subject: [PATCH] extend timeout on test/mocha/cli.js for node 0.12 --- test/mocha/cli.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/mocha/cli.js b/test/mocha/cli.js index 4acf03d6..0825b808 100644 --- a/test/mocha/cli.js +++ b/test/mocha/cli.js @@ -10,7 +10,7 @@ function read(path) { describe("bin/uglifyjs", function () { var uglifyjscmd = '"' + process.argv[0] + '" bin/uglifyjs'; it("should produce a functional build when using --self", function (done) { - this.timeout(60000); + this.timeout(120000); var command = uglifyjscmd + ' --self -mc ecma='; command += semver.satisfies(process.version, ">=4") ? "6" : "5";