Buno Journals

It's what I do that defines me.

minitest-reporters : rake test の実行結果を色付きで出力する

minitest-reporters

Rails4標準のminitestのテストをrake test(rake のみでも同じ)で動かしても出力結果に色は付かない。

f:id:bunoacts:20160828174758p:plain

やはり、成功は緑、失敗は赤、スキップ等は黄色で表示したい時、

minitest-reporters というgemを使えば良い。

github.com

Gemfileに追記してインストールしたら、Usage の通り、

test_helper.rb に、

require "minitest/reporters"
Minitest::Reporters.use!

と記述すれば良い。

f:id:bunoacts:20160828174836p:plain

参考

http://railstutorial.jp/chapters/static_pages?version=4.2#sec-minitest_reporters

github.com

qiita.com