While running integration tests in capybara, having app raise an exception (500 error; is rendered in browser) there\'s no stack trace in test.log file. Here\'s the
test.log
Go examine your config/environments/test.rb to find the line:
config/environments/test.rb
config.action_dispatch.show_exceptions = false
And change it to true.
true