Skip to content

Commit 0bd9753

Browse files
committed
fix: ensure diff is included in the json output
1 parent f6a0b4d commit 0bd9753

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

lib/pact/provider/rspec/json_formatter.rb

+7-5
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,15 @@ def stop(notification)
3030
output_hash[:examples] = notification.examples.map do |example|
3131
format_example(example).tap do |hash|
3232
e = example.exception
33-
# No point providing a backtrace for a mismatch, too much noise
34-
if e && ! e.is_a?(::RSpec::Expectations::ExpectationNotMetError)
33+
if e
3534
hash[:exception] = {
36-
:class => e.class.name,
37-
:message => e.message,
38-
:backtrace => e.backtrace,
35+
class: e.class.name,
36+
message: e.message,
3937
}
38+
# No point providing a backtrace for a mismatch, too much noise
39+
if !e.is_a?(::RSpec::Expectations::ExpectationNotMetError)
40+
hash[:exception][:backtrace]
41+
end
4042
end
4143
end
4244
end

0 commit comments

Comments
 (0)