Sha256: d86ba43e24a95535be34e976e7056aca77e6c8830643f84f88ddab7e1bbdb5df
Contents?: true
Size: 422 Bytes
Versions: 3
Compression:
Stored size: 422 Bytes
Contents
RSpec.configure do |config| config.before(:suite) do DatabaseCleaner.clean_with :truncation, except: %w(ar_internal_metadata) end config.before(:each) do DatabaseCleaner.strategy = :transaction end config.before(:each, js: true) do DatabaseCleaner.strategy = :truncation end config.before(:each) do DatabaseCleaner.start end config.after(:each) do DatabaseCleaner.clean end end
Version data entries
3 entries across 3 versions & 1 rubygems