1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: Disable fail fast of testing unless running on their CI
environment.
From: Soren Stoutner <soren@debian.org>
Forwarded: not-needed
Last-Update: 2025-03-18
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -7,7 +7,6 @@ RSpec.configure do |config|
config.disable_monkey_patching!
config.formatter = "documentation"
config.color = true
- config.fail_fast = true unless ENV["CI"]
config.mock_with :rspec do |mocks|
# Prevents you from mocking or stubbing a method that does not exist on
|