Add rspec persistence file to config to allow for re-running only failed tests locally

This commit is contained in:
Maximilian Grundke
2017-10-16 13:20:40 +02:00
parent ddeab8c34f
commit 686d56bbd6

View File

@ -82,4 +82,6 @@ RSpec.configure do |config|
# a real object. This is generally recommended. # a real object. This is generally recommended.
mocks.verify_partial_doubles = true mocks.verify_partial_doubles = true
end end
config.example_status_persistence_file_path = 'tmp/rspec_persistence_file.txt'
end end