Merge pull request #2134 from thelounge/xpaw/travis-timeout
Increase test timeout on CI
This commit is contained in:
commit
5ed8cc6320
@ -6,7 +6,9 @@ const request = require("request");
|
|||||||
const io = require("socket.io-client");
|
const io = require("socket.io-client");
|
||||||
|
|
||||||
describe("Server", function() {
|
describe("Server", function() {
|
||||||
this.timeout(5000);
|
// Travis is having issues with slow workers and thus tests timeout
|
||||||
|
this.timeout(process.env.CI ? 25000 : 5000);
|
||||||
|
|
||||||
let server;
|
let server;
|
||||||
let originalLogInfo;
|
let originalLogInfo;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user