Last active
December 30, 2015 07:49
-
-
Save mfdorst/7798656 to your computer and use it in GitHub Desktop.
A snippet to put in your 'spec_helper's to enable color rspec tests.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'rspec' | |
RSpec.configure do |config| | |
config.tty = true | |
config.color_enabled = true | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment