Skip to content
This repository was archived by the owner on Mar 15, 2022. It is now read-only.

Commit 0addf28

Browse files
committed
Better test output to help find hanging tests.
1 parent f1e1dd5 commit 0addf28

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ gemspec
44

55
group :development, :test do
66
gem 'minitest', '~> 5.5.1'
7+
gem 'minitest-reporters', '~> 1.0.11'
78
gem 'simplecov', '~> 0.9.2', :require => false
89
gem 'coveralls', '~> 0.7.11', :require => false
910
end

test/test_helper.rb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@
2323

2424
require 'minitest/autorun'
2525

26+
require 'minitest/reporters'
27+
Minitest::Reporters.use! Minitest::Reporters::SpecReporter.new(color: true)
28+
2629
require 'thread'
2730
require 'thread_safe'
2831

0 commit comments

Comments
 (0)