Skip to content

Commit

Permalink
added minitest-reporters gem
Browse files Browse the repository at this point in the history
  • Loading branch information
ddnexus committed Aug 13, 2019
1 parent 0b42e5c commit 2863c55
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
# test
gem 'rake'
gem 'minitest'
gem 'minitest-reporters'
gem 'rack'
gem 'i18n'

Expand Down
8 changes: 8 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ GEM
tzinfo (~> 1.1)
addressable (2.5.2)
public_suffix (>= 2.0.2, < 4.0)
ansi (1.5.0)
ast (2.4.0)
builder (3.2.3)
codecov (0.1.14)
json
simplecov
Expand Down Expand Up @@ -212,6 +214,11 @@ GEM
jekyll-feed (~> 0.9)
jekyll-seo-tag (~> 2.1)
minitest (5.11.3)
minitest-reporters (1.3.6)
ansi
builder
minitest (>= 5.0)
ruby-progressbar
multipart-post (2.0.0)
nokogiri (1.10.3)
mini_portile2 (~> 2.4.0)
Expand Down Expand Up @@ -279,6 +286,7 @@ DEPENDENCIES
github-pages (= 197)
i18n
minitest
minitest-reporters
oj
rack
rake
Expand Down
5 changes: 5 additions & 0 deletions test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,8 @@
require_relative 'mock_helpers/view'
require_relative 'mock_helpers/controller'
require "minitest/autorun"

unless ENV['TRAVIS']
require 'minitest/reporters'
MiniTest::Reporters.use!
end

0 comments on commit 2863c55

Please sign in to comment.