问题
Im using Rspec for Testing, but CAN'T find how to change the grey color in to Red and Green. Im testing so much that -especially when an error occurs- im having a hard time reading the passed and failures.
Any help would be nice :)
回答1:
I got it running by doing the following two things:
- In your run/debug configurations, enter
-c
in theRunner options
field In your
spec_helper.rb
, add the following code:RSpec.configure do |config| config.tty = true end
Additional info: http://rubyforge.org/pipermail/rspec-users/2011-January/019327.html
回答2:
Inside spec_helper.rb:
RSpec.configure do |config|
config.color = true
end
来源:https://stackoverflow.com/questions/16392264/change-rubymine-rspec-color