From 5f9cfad2dadf079e612775a7dfa0dc72e106c244 Mon Sep 17 00:00:00 2001 From: Tyler Ewing Date: Sat, 30 Dec 2023 19:09:12 -0600 Subject: [PATCH] fix(docs): use new RSpec docsite URLs in README the old `https://relishapp.com` don't resolve anymore. RSpec documentation has moved to `https://rspec.info` --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7a2d8c561..0731d1303 100644 --- a/README.md +++ b/README.md @@ -142,11 +142,11 @@ require 'capybara/rspec' If you are using Rails, put your Capybara specs in `spec/features` or `spec/system` (only works if [you have it configured in -RSpec](https://relishapp.com/rspec/rspec-rails/v/4-0/docs/directory-structure)) +RSpec](https://rspec.info/features/6-0/rspec-rails/directory-structure/)) and if you have your Capybara specs in a different directory, then tag the example groups with `type: :feature` or `type: :system` depending on which type of test you're writing. -If you are using Rails system specs please see [their documentation](https://relishapp.com/rspec/rspec-rails/docs/system-specs/system-spec#system-specs-driven-by-selenium-chrome-headless) for selecting the driver you wish to use. +If you are using Rails system specs please see [their documentation](https://rspec.info/features/6-0/rspec-rails/system-specs/system-specs/#system-specs-driven-by-selenium-chrome-headless) for selecting the driver you wish to use. If you are not using Rails, tag all the example groups in which you want to use Capybara with `type: :feature`.