How to format fail message? I want to show detailed errors in notification, is it possible wihout monkey patching ? 😃 @e2
|
def write_summary(duration, total, failures, pending) |
|
_write do |f| |
|
f.puts _message(total, failures, pending, duration) |
|
f.puts _failed_paths.join("\n") if failures > 0 |
|
end |
|
end |
How to format fail message? I want to show detailed errors in notification, is it possible wihout monkey patching ? 😃 @e2
guard-rspec/lib/guard/rspec_formatter.rb
Lines 109 to 114 in 1cf25c7