Last active
August 29, 2015 14:00
-
-
Save katorie/11145444 to your computer and use it in GitHub Desktop.
Railsチュートリアル 3章で `bundle install --without production` で出てきたメッセージ
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Post-install message from capybara: | |
IMPORTANT! Some of the defaults have changed in Capybara 2.1. If you're experiencing failures, | |
please revert to the old behaviour by setting: | |
Capybara.configure do |config| | |
config.match = :one | |
config.exact_options = true | |
config.ignore_hidden_elements = true | |
config.visible_text_only = true | |
end | |
If you're migrating from Capybara 1.x, try: | |
Capybara.configure do |config| | |
config.match = :prefer_exact | |
config.ignore_hidden_elements = false | |
end | |
Details here: http://www.elabs.se/blog/60-introducing-capybara-2-1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment