class Tryouts::CLI::CompactFormatter

def test_start(test_case:, index:, total:)

Test-level operations - only show in debug mode for compact
def test_start(test_case:, index:, total:)
  return unless @show_debug
  desc = test_case.description.to_s
  desc = "test #{index}" if desc.empty?
  puts "    Running: #{desc}"
end