Open
Description
Currently, out-of-the-box super_diff
will continue using colors in non-TTY environments such as CircleCI, etc.
To avoid this, one can simply modify spec_helper.rb
like this:
unless config.color
SuperDiff.configure do |config|
config.actual_color = :white
config.expected_color = :white
config.border_color = :white
config.header_color = :white
end
end
Ideally, this gem should automatically detect this case.
I can try and open a PR once confirmed