Increase timeout from running RWC. As UWDWeb takes slightly longer now (#9454)

This commit is contained in:
Yui 2016-07-01 09:59:30 -07:00 коммит произвёл GitHub
Родитель 0a682f1360
Коммит a591d40584
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -650,7 +650,7 @@ function runConsoleTests(defaultReporter: string, runInParallel: boolean, done:
}
if (tests && tests.toLocaleLowerCase() === "rwc") {
testTimeout = 100000;
testTimeout = 400000;
}
const colors = cmdLineOptions["colors"];

Просмотреть файл

@ -750,7 +750,7 @@ function runConsoleTests(defaultReporter, runInParallel) {
}
if (tests && tests.toLocaleLowerCase() === "rwc") {
testTimeout = 100000;
testTimeout = 400000;
}
colors = process.env.colors || process.env.color;