mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Allow Capybara 3.x (#32151)
This commit is contained in:
parent
6c82b6c99d
commit
207536c063
3 changed files with 3 additions and 3 deletions
2
Gemfile
2
Gemfile
|
@ -13,7 +13,7 @@ gem "rake", ">= 11.1"
|
|||
# be loaded after loading the test library.
|
||||
gem "mocha", require: false
|
||||
|
||||
gem "capybara", "~> 2.15"
|
||||
gem "capybara", ">= 2.15", "< 4.0"
|
||||
|
||||
gem "rack-cache", "~> 1.2"
|
||||
gem "coffee-rails"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
gem "capybara", "~> 2.15"
|
||||
gem "capybara", ">= 2.15", "< 4.0"
|
||||
|
||||
require "capybara/dsl"
|
||||
require "capybara/minitest"
|
||||
|
|
|
@ -69,7 +69,7 @@ end
|
|||
<%- if depends_on_system_test? -%>
|
||||
group :test do
|
||||
# Adds support for Capybara system testing and selenium driver
|
||||
gem 'capybara', '~> 2.15'
|
||||
gem 'capybara', '>= 2.15', '< 4.0'
|
||||
gem 'selenium-webdriver'
|
||||
# Easy installation and use of chromedriver to run system tests with Chrome
|
||||
gem 'chromedriver-helper'
|
||||
|
|
Loading…
Reference in a new issue