Skip to content
Snippets Groups Projects
Commit 0faf80aa authored by Jeroen van Baarsen's avatar Jeroen van Baarsen
Browse files

Temp fix for rspec so the specs are run again

parent 8ec42ff8
Branches
Tags
No related merge requests found
RSpec.configure do |config|
config.around(:each) do
DatabaseCleaner.clean_with(:truncation)
end
 
config.around(:each) do
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
config.around(:each, js: true) do |example|
DatabaseCleaner.strategy = :truncation
end
config.before(:each) do
DatabaseCleaner.start
end
config.after(:each) do
DatabaseCleaner.clean
DatabaseCleaner.clean_with(:truncation)
DatabaseCleaner.cleaning do
example.run
end
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment