@iainbeeston I had to use that recently. I wish there was an option to filter to show only from your code down, ie: showing the framework frames called by your code, as opposed to those calling your code, as normally I’m not interested in the high-level frames, like those from Rack
@iainbeeston @pablobm they are indeed. An alternative approach is to surround the problematic call in the RSpec example with begin/rescue/end block, and manually print out the backtrace, which I do with `pp $!.backtrace`
@iainbeeston Oh: and don't forget to re-raise or you may get a passing example where you shouldn't have one!