Reputation: 239
I am trying to run my scripts with two gems 1. minitest reporter 2. ui-test-support
I am also able to do a bundle install but when I try run my scripts I am getting an error
Gem::LoadError: Unable to activate ui-test-support-0.3.23, because minitest-5.2.
3 conflicts with minitest (< 5.0)
Upvotes: 1
Views: 64
Reputation: 605
minitest 5.2.3 is not compatible with ui-test-support.
Follow these steps:
gem list
jruby -S gem uninstall minitest
Gemfile
and lock version of minitest to "<5" jruby -S bundle install
Upvotes: 1