2020-10-10 14:16:11 +02:00
|
|
|
# typed: true
|
2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-12-15 09:14:44 +00:00
|
|
|
require "rspec/core/formatters/progress_formatter"
|
|
|
|
|
2023-02-17 15:26:18 +00:00
|
|
|
class QuietProgressFormatter < RSpec::Core::Formatters::ProgressFormatter
|
2017-12-15 09:14:44 +00:00
|
|
|
RSpec::Core::Formatters.register self, :seed
|
|
|
|
|
2023-02-17 15:26:18 +00:00
|
|
|
def dump_summary(notification); end
|
2017-12-15 09:14:44 +00:00
|
|
|
def seed(notification); end
|
2023-02-17 15:26:18 +00:00
|
|
|
def close(notification); end
|
2017-12-15 09:14:44 +00:00
|
|
|
end
|