1
0
Fork 0
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:
Thomas Walpole 2018-03-05 17:44:39 -08:00 committed by Jeremy Daer
parent 6c82b6c99d
commit 207536c063
3 changed files with 3 additions and 3 deletions

View file

@ -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"

View file

@ -1,6 +1,6 @@
# frozen_string_literal: true
gem "capybara", "~> 2.15"
gem "capybara", ">= 2.15", "< 4.0"
require "capybara/dsl"
require "capybara/minitest"

View file

@ -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'