I'm using minitest-reporters
and mini_backtrace
gems with the settings from the Hartl tutorial. The output of my tests are way too long. The output includes a lot of sql and also lists each test.
Based on this question, the sql can be suppressed with:
ActiveRecord::Base.logger.level = 1
but how do I suppress the listing of each test? This is the output I'd like from the minitest-reporters
gem's documentation:
How do I get a simple output like that?