1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-17 06:52:27 +01:00

[bug] unable to run tests suite with run-tests.sh

This commit is contained in:
Sylvain 2020-09-01 10:59:57 +02:00
parent 55824f19b6
commit 3a705fb41f
2 changed files with 8 additions and 0 deletions

View File

@ -1,5 +1,7 @@
# Changelog Fab-manager
- Fix a bug: unable to run tests suite with run-tests.sh
## v4.5.6 2020 September 1st
- Fix a bug: unable to pay by card for events reservation

View File

@ -20,3 +20,9 @@ Sidekiq.configure_client do |config|
end
Sidekiq::Extensions.enable_delay!
# Quieting logging in the test environment
if Rails.env.test?
require 'sidekiq/testing'
Sidekiq.logger.level = Logger::ERROR
end