A simple solution is to fix them one by one and stop Rspec.
Of course there's an option for that: rspec --fail-fast
You can use the configuration file:
RSpec.configure do |c|
c.fail_fast = true
end
A simple solution is to fix them one by one and stop Rspec.
Of course there's an option for that: rspec --fail-fast
You can use the configuration file:
RSpec.configure do |c|
c.fail_fast = true
end
For further actions, you may consider blocking this person and/or reporting abuse
Maya Shavin 🌷☕️🏡 -
Alef Ojeda de Oliveira -
T Sudhish Nair -
Mike Rispoli -
Top comments (1)
I also recommend to move such settings to
.rspec
file, so every developer can tune these settings easily..rspec