sanfrecce-osaka
sanfrecce-osaka
fixed https://github.com/rubocop/rubocop-rspec/issues/1951 `RuboCop::Cop::RSpec::Dialect#rspec_method?` detects if node's second child is an RSpec block using `RuboCop::RSpec::Language::ALL.all`. However, `RuboCop::Cop::RSpec::Dialect#rspec_method?` returned nil because the following Capybara-specific methods were not set in config/default.yml. - given...
RSpec/Dialect causes a false negative when using below setting mentioned in the documentation. ```yaml RSpec/Dialect: PreferredMethods: background: :before scenario: :it xscenario: :xit given: :let given!: :let! feature: :describe ``` cf....