aboutsummaryrefslogtreecommitdiffstats
path: root/ci
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2018-09-16 09:18:59 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2018-09-16 09:40:17 +0900
commit8059c77404a77d909647d3379dc2a3f31bc0d8de (patch)
tree6e86309673dcaa2107986f13424deea8d7ab3547 /ci
parenta569a27fc76070d8241cac16713ec9ff8cbe190a (diff)
downloadrails-8059c77404a77d909647d3379dc2a3f31bc0d8de.tar.gz
rails-8059c77404a77d909647d3379dc2a3f31bc0d8de.tar.bz2
rails-8059c77404a77d909647d3379dc2a3f31bc0d8de.zip
Load `chromedriver-helper.rb`
The bin shim provides by `chromedriver-helper` gem has renamed to `chromedriver-helper` since 2.0. https://github.com/flavorjones/chromedriver-helper/pull/58 Since bin of new name is set to driver path in `lib/chromedriver-helper.rb`, need to load it.
Diffstat (limited to 'ci')
-rw-r--r--ci/qunit-selenium-runner.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/qunit-selenium-runner.rb b/ci/qunit-selenium-runner.rb
index 05bcab8cdb..132b3d17eb 100644
--- a/ci/qunit-selenium-runner.rb
+++ b/ci/qunit-selenium-runner.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
require "qunit/selenium/test_runner"
-require "chromedriver/helper"
+require "chromedriver-helper"
driver_options = Selenium::WebDriver::Chrome::Options.new
driver_options.add_argument("--headless")