summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Lapierre <mlapierre@gitlab.com>2019-05-22 02:33:07 +0000
committerMark Lapierre <mlapierre@gitlab.com>2019-05-22 02:33:07 +0000
commita6e2ec0d954a14bd0ff4b1f37b3f6889eea28fde (patch)
tree87a9d833e9fb35b1b4d612bc924340340cc67bb2
parent4edfa5102e85b986165674a6a87f807e2362c20a (diff)
parentcdc68de16a71557c9e6789e92f56eb458625fabd (diff)
downloadgitlab-ce-a6e2ec0d954a14bd0ff4b1f37b3f6889eea28fde.tar.gz
Merge branch 'qa-contain-chrome-vars' into 'master'
Move Chrome variables under conditional See merge request gitlab-org/gitlab-ce!28505
-rw-r--r--qa/qa/runtime/browser.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/qa/qa/runtime/browser.rb b/qa/qa/runtime/browser.rb
index a5218fc9ab1..174a52bd376 100644
--- a/qa/qa/runtime/browser.rb
+++ b/qa/qa/runtime/browser.rb
@@ -76,6 +76,9 @@ module QA
# https://developers.google.com/web/updates/2017/04/headless-chrome#cli
options.add_argument("disable-gpu")
end
+
+ # Disable /dev/shm use in CI. See https://gitlab.com/gitlab-org/gitlab-ee/issues/4252
+ options.add_argument("disable-dev-shm-usage") if QA::Runtime::Env.running_in_ci?
end
# Use the same profile on QA runs if CHROME_REUSE_PROFILE is true.
@@ -85,9 +88,6 @@ module QA
options.add_argument("user-data-dir=#{qa_profile_dir}")
end
- # Disable /dev/shm use in CI. See https://gitlab.com/gitlab-org/gitlab-ee/issues/4252
- options.add_argument("disable-dev-shm-usage") if QA::Runtime::Env.running_in_ci?
-
selenium_options = {
browser: QA::Runtime::Env.browser,
clear_local_storage: true,