Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change Rubymine Rspec Color

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 :)

enter image description here

like image 535
Mini John Avatar asked May 06 '13 05:05

Mini John


1 Answers

I got it running by doing the following two things:

  1. In your run/debug configurations, enter -c in the Runner options field
  2. 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

like image 115
TrashyMcTrash Avatar answered Oct 04 '22 15:10

TrashyMcTrash