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
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support/capybara.rb')
-rw-r--r--spec/support/capybara.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/spec/support/capybara.rb b/spec/support/capybara.rb
index 65abbe12621..78d7e57c208 100644
--- a/spec/support/capybara.rb
+++ b/spec/support/capybara.rb
@@ -51,15 +51,6 @@ Capybara.register_server :puma_via_workhorse do |app, port, host, **options|
file.close! # We just want the filename
TestEnv.with_workhorse(host, port, socket_path) do
- # In cases of multiple installations of chromedriver, prioritize the version installed by SeleniumManager
- # selenium-manager doesn't work with Linux arm64 yet:
- # https://github.com/SeleniumHQ/selenium/issues/11357
- if RUBY_PLATFORM.include?('x86_64-linux') || RUBY_PLATFORM.include?('darwin')
- chrome_options = Selenium::WebDriver::Chrome::Options.chrome
- chromedriver_path = File.dirname(Selenium::WebDriver::SeleniumManager.driver_path(chrome_options))
- ENV['PATH'] = "#{chromedriver_path}:#{ENV['PATH']}" # rubocop:disable RSpec/EnvAssignment
- end
-
Capybara.servers[:puma].call(app, nil, socket_path, **options)
end
end