Sha256: 71cb5c86f0482168345b58cce9fd8163553086e1bccf61acde05a004d4f2f3d2
Contents?: true
Size: 1.14 KB
Versions: 4
Compression:
Stored size: 1.14 KB
Contents
# frozen_string_literal: true require 'cucumber/platform' module Cucumber module Formatter @backtrace_filters = %w( /vendor/rails lib/cucumber bin/cucumber: lib/rspec gems/ minitest test/unit .gem/ruby lib/ruby/ bin/bundle ) if ::Cucumber::JRUBY @backtrace_filters << 'org/jruby/' end BACKTRACE_FILTER_PATTERNS = Regexp.new(@backtrace_filters.join('|')) class BacktraceFilter def initialize(exception) @exception = exception end def exception return @exception if ::Cucumber.use_full_backtrace pwd_pattern = /#{::Regexp.escape(::Dir.pwd)}\//m backtrace = @exception.backtrace.map { |line| line.gsub(pwd_pattern, './') } filtered = (backtrace || []).reject do |line| line =~ BACKTRACE_FILTER_PATTERNS end if ::ENV['CUCUMBER_TRUNCATE_OUTPUT'] # Strip off file locations filtered = filtered.map do |line| line =~ /(.*):in `/ ? $1 : line end end @exception.set_backtrace(filtered) @exception end end end end
Version data entries
4 entries across 4 versions & 2 rubygems