From a591d40584ec610a60c57141bb7f0f33db99f666 Mon Sep 17 00:00:00 2001 From: Yui Date: Fri, 1 Jul 2016 09:59:30 -0700 Subject: [PATCH] Increase timeout from running RWC. As UWDWeb takes slightly longer now (#9454) --- Gulpfile.ts | 2 +- Jakefile.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Gulpfile.ts b/Gulpfile.ts index 74113b4b0c7..3f9b2a66caa 100644 --- a/Gulpfile.ts +++ b/Gulpfile.ts @@ -650,7 +650,7 @@ function runConsoleTests(defaultReporter: string, runInParallel: boolean, done: } if (tests && tests.toLocaleLowerCase() === "rwc") { - testTimeout = 100000; + testTimeout = 400000; } const colors = cmdLineOptions["colors"]; diff --git a/Jakefile.js b/Jakefile.js index 7db91abcfcc..828f4b084d1 100644 --- a/Jakefile.js +++ b/Jakefile.js @@ -750,7 +750,7 @@ function runConsoleTests(defaultReporter, runInParallel) { } if (tests && tests.toLocaleLowerCase() === "rwc") { - testTimeout = 100000; + testTimeout = 400000; } colors = process.env.colors || process.env.color;