aboutsummaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorStas Vilchik <vilchiks@gmail.com>2015-03-16 10:19:26 +0100
committerStas Vilchik <vilchiks@gmail.com>2015-03-16 10:19:26 +0100
commit195c9fc6c44b87d20e084df1d6647e30598298ca (patch)
tree8911cb8d428917f03f4608dac35902d9ae3470ef /server
parentcacae4768d78039298e40ad7f982d824ce9e3587 (diff)
downloadsonarqube-195c9fc6c44b87d20e084df1d6647e30598298ca.tar.gz
sonarqube-195c9fc6c44b87d20e084df1d6647e30598298ca.zip
try to increase timeout for web tests
Diffstat (limited to 'server')
-rw-r--r--server/sonar-web/src/test/lib.js5
1 files changed, 1 insertions, 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;
};