Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/qa
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2017-11-14 20:25:28 +0300
committerRobert Speicher <rspeicher@gmail.com>2017-11-14 20:25:28 +0300
commitb09b9b8ea8bcb93ce0705cfd101e17345427165e (patch)
treeff1979a7fcc8c13b0e0a8208b44da6db272fbb11 /qa
parent149460b8961f146c978639941897fbbfa43cbf13 (diff)
Raise the QA Capybara's default wait time from 4 to 10
We were seeing intermittent failures on CI due to slow responses from certain endpoints.
Diffstat (limited to 'qa')
-rw-r--r--qa/qa/specs/config.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/qa/specs/config.rb b/qa/qa/specs/config.rb
index 591ddde8ab9..9f9fe9844d2 100644
--- a/qa/qa/specs/config.rb
+++ b/qa/qa/specs/config.rb
@@ -50,7 +50,7 @@ module QA
Capybara.configure do |config|
config.default_driver = :chrome
config.javascript_driver = :chrome
- config.default_max_wait_time = 4
+ config.default_max_wait_time = 10
# https://github.com/mattheworiordan/capybara-screenshot/issues/164
config.save_path = 'tmp'