extend test timeout

Travis has gone a lot slower recently, and most test failures are due to time-out on this particular test.
This commit is contained in:
Alex Lam S.L
2017-05-10 02:43:12 +08:00
committed by GitHub
parent 5fd8244a2e
commit 41996be86f

View 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 | " +