class Minitest::Reporters::SpecReporter

def initialize(options = {})

Options Hash: (**options)
  • suppress_inline_failure_output (Boolean) -- whether to suppress the printing of errors
  • print_failure_summary (Boolean) -- whether to print the errors at the bottom of the

Parameters:
  • options (Hash) --
def initialize(options = {})
  super
  @print_failure_summary = options[:print_failure_summary]
  @suppress_inline_failure_output = options[:suppress_inline_failure_output]
end