Is there a config variable to set, or some other way to get Rails ActiveSupport::TestCase to show more than one trace line? It is really hard to de
ActiveSupport::TestCase
You could try setting global variable $DEBUG to non-nil value. If that's minitest who filters your backtrace, setting $DEBUG = true would ensure that the entire backtrace is printed out.
$DEBUG = true