diff options
| author | Heinrich Lee Yu <heinrich@gitlab.com> | 2019-06-11 12:17:50 +0800 |
|---|---|---|
| committer | Heinrich Lee Yu <heinrich@gitlab.com> | 2019-06-11 15:53:09 +0800 |
| commit | c4eeb3afc5bd6820b8607fe203843206872871e6 (patch) | |
| tree | dc6f899513dfff66e8e0d175651db5f0b85dffda | |
| parent | 641d332351907b77b53b0cb23ff51ccea2489824 (diff) | |
| download | gitlab-ce-58882-explicit-chrome-data-dir.tar.gz | |
Explicitly set Chrome user-data-dir58882-explicit-chrome-data-dir
This is a temporary measure to prevent some system specs
causing Chrome to crash
| -rw-r--r-- | spec/support/capybara.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/spec/support/capybara.rb b/spec/support/capybara.rb index 875a9a76e12..14ce3c32e77 100644 --- a/spec/support/capybara.rb +++ b/spec/support/capybara.rb @@ -42,6 +42,9 @@ Capybara.register_driver :chrome do |app| # Disable /dev/shm use in CI. See https://gitlab.com/gitlab-org/gitlab-ee/issues/4252 options.add_argument("disable-dev-shm-usage") if ENV['CI'] || ENV['CI_SERVER'] + # Explicitly set user-data-dir to prevent crashes. See https://gitlab.com/gitlab-org/gitlab-ce/issues/58882#note_179811508 + options.add_argument("user-data-dir=/tmp/chrome") if ENV['CI'] || ENV['CI_SERVER'] + Capybara::Selenium::Driver.new( app, browser: :chrome, |
