class ParallelTests::Test::Runner

def find_results(test_output)

def find_results(test_output)
  test_output.split("\n").map do |line|
    line.gsub!(/\e\[\d+m/, '') # remove color coding
    next unless line_is_result?(line)
    line
  end.compact
end