1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

<備忘録> Ruby on Railsのminitestを少しだけ見やすくする方法。

Last updated at Posted at 2021-12-11

Ruby on Railsのテストをちょっとだけ快適に。

初心者独学中の者です。
テストの結果に色をつけます。
使用するGemはminitestです。

環境

  • macOS Monterey 12.0.1
  • Ruby 3.0.3
  • Bundler 2.2.32
  • Rails 6.1.4.1
  • minitest (5.14.4)

before
スクリーンショット 2021-12-11 15.07.25.png
テストが通っているのかどうか分かりずらい。
そこで色をつけて見えやすくします。

test_helper.rbに書き込む

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

after
スクリーンショット 2021-12-11 15.07.48.png

以上、少しだけ見えやすくなりました。

間違っているところがあれば是非教えてください。
よろしくお願いします。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?