Skip to content

Commit 4416d04

Browse files
committed
feat(publish test results): remove ansi colours from error messages
1 parent 31192d0 commit 4416d04

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/pact/provider/rspec/pact_broker_formatter.rb

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
require 'rspec/core/formatters'
22
require 'pact/provider/verification_results/publish_all'
3+
require 'term/ansicolor'
34

45
module Pact
56
module Provider
@@ -32,7 +33,7 @@ def stop(notification)
3233
if e
3334
hash[:exception] = {
3435
class: e.class.name,
35-
message: e.message
36+
message: ::Term::ANSIColor.uncolor(e.message)
3637
}
3738
end
3839
end

0 commit comments

Comments
 (0)