discourse/lib/turbo_tests/flaky/flaky_detector_formatter.rb

14 lines
326 B
Ruby

# frozen_string_literal: true
module TurboTests
module Flaky
class FlakyDetectorFormatter < RSpec::Core::Formatters::BaseFormatter
RSpec::Core::Formatters.register self, :dump_failures
def dump_failures(notification)
Manager.remove_example(notification.failed_examples)
end
end
end
end