gitlab-org--gitlab-foss/spec/support/db_cleaner.rb

19 lines
419 B
Ruby
Raw Normal View History

RSpec.configure do |config|
config.around(:each) do |example|
DatabaseCleaner.strategy = :transaction
DatabaseCleaner.clean_with(:truncation)
DatabaseCleaner.cleaning do
example.run
end
end
config.around(:each, js: true) do |example|
DatabaseCleaner.strategy = :truncation
DatabaseCleaner.clean_with(:truncation)
DatabaseCleaner.cleaning do
example.run
end
end
end