diff options
author | Tanya Pazitny <tpazitny@gitlab.com> | 2019-08-30 22:44:48 +0000 |
---|---|---|
committer | Tanya Pazitny <tpazitny@gitlab.com> | 2019-08-30 22:44:48 +0000 |
commit | ce6dbc57cfe5a3a2dafa89e10fce2d6732c7fc29 (patch) | |
tree | d68713c2e8c0a59729771c40ba785aa2597a99be | |
parent | 88c6423e4a45103cc480467bc8f412a48e1e0b55 (diff) | |
parent | 6c0d1534c1e0aab79342e9109647eb820e6d35c5 (diff) | |
download | gitlab-ce-ce6dbc57cfe5a3a2dafa89e10fce2d6732c7fc29.tar.gz |
Merge branch 'qa/increase-window-size-during-e2e-tests' into 'master'
Increase window size during e2e tests
See merge request gitlab-org/gitlab-ce!32471
-rw-r--r-- | qa/qa/runtime/browser.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/qa/runtime/browser.rb b/qa/qa/runtime/browser.rb index 2987bb1a213..197008ed8bf 100644 --- a/qa/qa/runtime/browser.rb +++ b/qa/qa/runtime/browser.rb @@ -68,7 +68,7 @@ module QA options = Selenium::WebDriver.const_get(QA::Runtime::Env.browser.capitalize)::Options.new if QA::Runtime::Env.browser == :chrome - options.add_argument("window-size=1240,1680") + options.add_argument("window-size=1480,2200") # Chrome won't work properly in a Docker container in sandbox mode options.add_argument("no-sandbox") |