We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6a0b4d commit 0bd9753Copy full SHA for 0bd9753
lib/pact/provider/rspec/json_formatter.rb
@@ -30,13 +30,15 @@ def stop(notification)
30
output_hash[:examples] = notification.examples.map do |example|
31
format_example(example).tap do |hash|
32
e = example.exception
33
- # No point providing a backtrace for a mismatch, too much noise
34
- if e && ! e.is_a?(::RSpec::Expectations::ExpectationNotMetError)
+ if e
35
hash[:exception] = {
36
- :class => e.class.name,
37
- :message => e.message,
38
- :backtrace => e.backtrace,
+ class: e.class.name,
+ message: e.message,
39
}
+ # No point providing a backtrace for a mismatch, too much noise
+ if !e.is_a?(::RSpec::Expectations::ExpectationNotMetError)
40
+ hash[:exception][:backtrace]
41
+ end
42
end
43
44
0 commit comments