From a796e450b7d104703cfc6836b15d7b4bc90d5d2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javi=20Mart=C3=ADn?= Date: Wed, 6 Sep 2023 15:47:58 +0200 Subject: [PATCH] Add RSpec/Capybara/SpecificActions rubocop rule This rule was added in rubocop-rspec 2.14.0. Even though we always follow this rule, we haven't always done so in the past. Now we're making sure we'll keep following this rule. --- .rubocop.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.rubocop.yml b/.rubocop.yml index 76c96001d..6fbc9c70d 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -486,6 +486,9 @@ RSpec/Capybara/FeatureMethods: RSpec/Capybara/NegationMatcher: Enabled: true +RSpec/Capybara/SpecificActions: + Enabled: true + RSpec/Capybara/VisibilityMatcher: Enabled: true