mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
Presumably the intent of this was to clear the database and repopulate it with seed data. `transaction` isn't the right strategy for this; it just rolls back any existing transactions.
17 lines
383 B
Ruby
17 lines
383 B
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.configure do |config|
|
|
config.before(:suite) do
|
|
DatabaseCleaner.clean_with(:truncation)
|
|
Rails.application.load_seed
|
|
end
|
|
|
|
config.before(:each) do
|
|
DatabaseCleaner.start
|
|
end
|
|
|
|
config.after(:each) do |example|
|
|
TransactionalCapybara::AjaxHelpers.wait_for_ajax(page) if example.metadata[:js]
|
|
DatabaseCleaner.clean
|
|
end
|
|
end
|