Skip to content

Commit 4f01bc9

Browse files
committed
fix: set color codes even on dumb terms (prev behaviour)
1 parent 43bce74 commit 4f01bc9

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

lib/pact/provider/matchers/messages.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ def expected_desc_for_it expected
3636
def colorize_if_enabled formatted_diff, color_enabled
3737
if color_enabled
3838
# RSpec wraps each line in the failure message with failure_color, turning it red.
39-
# To ensure the lines in the diff that should be white, stay white, wrap each line
40-
# in ANSI white.
41-
formatted_diff.split("\n").collect{ |line| Rainbow(line).white }.join("\n")
39+
# To ensure the lines in the diff that should be white, stay white, put an
40+
# ANSI reset at the start of each line.
41+
formatted_diff.split("\n").collect{ |line|"\e[0m#{line}" }.join("\n")
4242
else
4343
formatted_diff
4444
end

lib/pact/provider/rspec/pact_broker_formatter.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def format_example(example)
4343
if example.exception
4444
hash[:exception] = {
4545
class: example.exception.class.name,
46-
message: Rainbow(example.exception.message).white
46+
message: "\e[0m#{example.exception.message}"
4747
}
4848
end
4949

spec/lib/pact/provider/matchers/messages_spec.rb

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ module Matchers
1212
let(:diff_formatter) { Pact::Matchers::UnixDiffFormatter }
1313
let(:message) { "line1\nline2"}
1414
let(:output_message) { "Actual: actual\n\n#{message}"}
15-
let(:output_message_with_resets) { "Actual: \e[37mactual\e[0m\n\n#{Rainbow('line1').white}\n#{Rainbow('line2').white}"}
15+
let(:r) { "\e[0m" }
16+
let(:output_message_with_resets) { "Actual: \e[37mactual#{r}\n\n#{r}line1\n#{r}line2"}
1617
let(:diff) { double("diff") }
1718
let(:actual) { "actual" }
1819
let(:color_enabled) { true }

0 commit comments

Comments
 (0)