From 195c9fc6c44b87d20e084df1d6647e30598298ca Mon Sep 17 00:00:00 2001 From: Stas Vilchik Date: Mon, 16 Mar 2015 10:19:26 +0100 Subject: [PATCH] try to increase timeout for web tests --- server/sonar-web/src/test/lib.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/server/sonar-web/src/test/lib.js b/server/sonar-web/src/test/lib.js index 4f706ef3913..3a8020f9ac2 100644 --- a/server/sonar-web/src/test/lib.js +++ b/server/sonar-web/src/test/lib.js @@ -53,9 +53,6 @@ exports.changeWorkingDirectory = function (dir) { // Since Casper has control, the invoked script is deep in the argument stack // commandLineArgs = casper/bin/bootstrap.js,--casper-path=.../casperjs,--cli,--test,[file(s) under test],[options] var currentFile = commandLineArgs[4]; - console.log(''); - console.log(currentFile); - console.log(''); var curFilePath = currentFile.split(fs.separator); if (curFilePath.length > 1) { curFilePath.pop(); // test name @@ -69,7 +66,7 @@ exports.changeWorkingDirectory = function (dir) { exports.configureCasper = function () { - casper.options.waitTimeout = 30000; + casper.options.waitTimeout = 60000; }; -- 2.39.5