diff --git a/Gruntfile.js b/Gruntfile.js index ee14d32a57..d69994b60b 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -59,7 +59,7 @@ module.exports = function ( grunt ) { 'screenshots-en': { options: { reporter: 'spec', - timeout: 30000, + timeout: 40000, require: [ function () { /* jshint undef:false */ @@ -72,7 +72,7 @@ module.exports = function ( grunt ) { 'screenshots-all': { options: { reporter: 'spec', - timeout: 30000, + timeout: 40000, require: [ function () { /* jshint undef:false */ diff --git a/build/screenshots.js b/build/screenshots.js index b70f1938e0..1640c660d6 100644 --- a/build/screenshots.js +++ b/build/screenshots.js @@ -28,7 +28,7 @@ function runTests( lang ) { driver = new chrome.Driver(); } - driver.manage().timeouts().setScriptTimeout( 30000 ); + driver.manage().timeouts().setScriptTimeout( 40000 ); driver.manage().window().setSize( 1200, 1000 ); driver.get( 'https://en.wikipedia.org/wiki/PageDoesNotExist?veaction=edit&uselang=' + lang ); @@ -154,7 +154,7 @@ function runTests( lang ) { } } ); } ), - 30000 + 40000 ); }