diff options
author | Guillermo Iguaran <guilleiguaran@gmail.com> | 2019-03-24 16:33:24 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-24 16:33:24 -0500 |
commit | df51b75f1285cf952864fcc59409dd8bcf78c5a8 (patch) | |
tree | 48020abd69f24f2b898bb6b49271f3cb697b282e /railties/lib | |
parent | b4ca05ea43b1033c3f65d23d3b7b624e0e293a35 (diff) | |
parent | 895edbcf406acfe1684bd41a4e3fb901b2ad6d6c (diff) | |
download | rails-df51b75f1285cf952864fcc59409dd8bcf78c5a8.tar.gz rails-df51b75f1285cf952864fcc59409dd8bcf78c5a8.tar.bz2 rails-df51b75f1285cf952864fcc59409dd8bcf78c5a8.zip |
Merge pull request #35732 from rails/webdrivers
Replace chromedriver-helper with webdrivers
Diffstat (limited to 'railties/lib')
-rw-r--r-- | railties/lib/rails/generators/rails/app/templates/Gemfile.tt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/lib/rails/generators/rails/app/templates/Gemfile.tt b/railties/lib/rails/generators/rails/app/templates/Gemfile.tt index 18de6948f0..88cd502b53 100644 --- a/railties/lib/rails/generators/rails/app/templates/Gemfile.tt +++ b/railties/lib/rails/generators/rails/app/templates/Gemfile.tt @@ -69,8 +69,8 @@ group :test do # Adds support for Capybara system testing and selenium driver gem 'capybara', '>= 2.15' gem 'selenium-webdriver' - # Easy installation and use of chromedriver to run system tests with Chrome - gem 'chromedriver-helper' + # Easy installation and use of web drivers to run system tests with browsers + gem 'webdrivers' end <%- end -%> |