In other o/s RSpec returns nicely coloured results (red, green etc).
However in the windows (Vista) command prompt my text output is just plain old boring white.
How can I bring colour to my RSpec test results?
Thanks
Evolve
|
In other o/s RSpec returns nicely coloured results (red, green etc). However in the windows (Vista) command prompt my text output is just plain old boring white. How can I bring colour to my RSpec test results? Thanks Evolve |
|||
|
|
|
UPDATE: Win32Console no longer works with rspec. ANSICON recommended. https://github.com/rspec/rspec-rails/issues/487#issuecomment-3556806 |
|||
|
|
|
I had to install ansicon, and now everything is fine. (Even in my Aptana terminal). Install ansicon description: http://qastuffs.blogspot.com/2011/02/how-to-install-ansicon-for-cucumber-to.html |
|||
|
|
You need to install the
when you try to colorize output. |
|||||||||||
|
|
Did you specify '--color' in your rake rspec tasks' spec_opts? Something like this..
|
|||
|
|
|
I'm running in Windows XP which I believe is an NT system. The ANSICON claims that this is not supported. Yes it does not work for cmd. But if you put the files in system32 folder, just run the ansicon.exe from anywhere. Win32Console is depricated for rspec but you may still use it for other programs you write if you want color output from the command line. see the readmes in the gem. I put ansicon in my start>run>open text box. It works just fine. |
|||
|
|
|
The best method is to create a file name .rspec in the root folder of your app and include this single line of code in it:
Done and dusted |
|||
|
|