diff options
author | Robert Speicher <rspeicher@gmail.com> | 2017-11-14 11:25:28 -0600 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2017-11-14 11:25:28 -0600 |
commit | b09b9b8ea8bcb93ce0705cfd101e17345427165e (patch) | |
tree | ff1979a7fcc8c13b0e0a8208b44da6db272fbb11 /qa | |
parent | 149460b8961f146c978639941897fbbfa43cbf13 (diff) | |
download | gitlab-ce-b09b9b8ea8bcb93ce0705cfd101e17345427165e.tar.gz |
Raise the QA Capybara's default wait time from 4 to 10rs-qa-default-timeout
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.rb | 2 |
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' |