extend test timeout
authorAlex Lam S.L <alexlamsl@gmail.com>
Tue, 9 May 2017 18:43:12 +0000 (02:43 +0800)
committerGitHub <noreply@github.com>
Tue, 9 May 2017 18:43:12 +0000 (02:43 +0800)
Travis has gone a lot slower recently, and most test failures are due to time-out on this particular test.

test/mocha/spidermonkey.js

index 4071a13..a8a112d 100644 (file)
@@ -4,7 +4,7 @@ var uglify = require("../node");
 
 describe("spidermonkey export/import sanity test", function() {
     it("should produce a functional build when using --self with spidermonkey", function(done) {
-        this.timeout(20000);
+        this.timeout(30000);
 
         var uglifyjs = '"' + process.argv[0] + '" bin/uglifyjs';
         var command = uglifyjs + " --self -cm --wrap SpiderUglify -o spidermonkey | " +