diff --git a/Gemfile b/Gemfile index 8d05449..10afe66 100644 --- a/Gemfile +++ b/Gemfile @@ -47,8 +47,7 @@ group :development, :test do # Testing Framework # Minitest 6.0+ is having some issues with how tests are currently written - gem "minitest", "~> 5.0" - gem "minitest-reporters" + gem "minitest", "~> 6.0" # Omakase Ruby styling [https://github.com/rails/rubocop-rails-omakase/] gem "rubocop-rails-omakase", require: false diff --git a/Gemfile.lock b/Gemfile.lock index 67e9dd0..ca37b23 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -75,7 +75,6 @@ GEM securerandom (>= 0.3) tzinfo (~> 2.0, >= 2.0.5) uri (>= 0.13.1) - ansi (1.5.0) ast (2.4.3) base64 (0.3.0) bcrypt (3.1.21) @@ -138,12 +137,8 @@ GEM net-smtp marcel (1.1.0) mini_mime (1.1.5) - minitest (5.27.0) - minitest-reporters (1.7.1) - ansi - builder - minitest (>= 5.0) - ruby-progressbar + minitest (6.0.1) + prism (~> 1.5) msgpack (1.8.0) net-imap (0.6.2) date @@ -328,8 +323,7 @@ DEPENDENCIES brakeman debug kamal - minitest (~> 5.0) - minitest-reporters + minitest (~> 6.0) pg (~> 1.6) puma (>= 5.0) rails (~> 8.1.2) diff --git a/test/test_helper.rb b/test/test_helper.rb index 524d4cf..3891f17 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -2,8 +2,6 @@ require_relative "../config/environment" ActiveRecord::Migration.maintain_test_schema! require "rails/test_help" -require "minitest/reporters" -Minitest::Reporters.use! Minitest::Reporters::SpecReporter.new require "bcrypt"