diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2017-05-10 02:43:12 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-10 02:43:12 +0800 |
commit | 41996be86f326f667e755cfa953d32befbfa3076 (patch) | |
tree | 2c2f9ac37ae96bfb6874c1ffd05d9a59c2bb61c9 /test | |
parent | 5fd8244a2e36b8f5c2de956e365e8e491e39ca26 (diff) | |
download | tracifyjs-41996be86f326f667e755cfa953d32befbfa3076.tar.gz tracifyjs-41996be86f326f667e755cfa953d32befbfa3076.zip |
extend test timeout
Travis has gone a lot slower recently, and most test failures are due to time-out on this particular test.
Diffstat (limited to 'test')
-rw-r--r-- | test/mocha/spidermonkey.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/mocha/spidermonkey.js b/test/mocha/spidermonkey.js index 4071a136..a8a112d0 100644 --- a/test/mocha/spidermonkey.js +++ b/test/mocha/spidermonkey.js @@ -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 | " + |