spec_helper: don't truncate output expectations.

It's really useful to be able to see the full output particularly when
a backtrace is in it.
This commit is contained in:
Mike McQuaid 2018-05-24 14:28:20 +01:00
parent 97645d061d
commit 0c216bc5b8

View File

@ -43,6 +43,10 @@ RSpec.configure do |config|
config.filter_run_when_matching :focus
config.expect_with :rspec do |c|
c.max_formatted_output_length = nil
end
config.include(FileUtils)
config.include(RuboCop::RSpec::ExpectOffense)