In order to get the tests to run in the test runner for RubyMine, I had to add gem 'tzinfo-data' and gem 'minitest-reporters', '>= 0.5.0' to the Gemfile and require 'minitest/reporters' and Minitest::Reporters.use! to test_helper.rb
Am I doing something wrong, or is there a better way to run the tests?
In order to get the tests to run in the test runner for RubyMine, I had to add
gem 'tzinfo-data'andgem 'minitest-reporters', '>= 0.5.0'to theGemfileandrequire 'minitest/reporters'andMinitest::Reporters.use!totest_helper.rbAm I doing something wrong, or is there a better way to run the tests?