diff --git a/backend/config/environments/fullstack.rb b/backend/config/environments/fullstack.rb index 01a1014a3..25b1b053b 100644 --- a/backend/config/environments/fullstack.rb +++ b/backend/config/environments/fullstack.rb @@ -1,4 +1,6 @@ +require 'sidekiq/testing' Rails.application.configure do + Sidekiq::Logging.logger = nil # Settings specified here will take precedence over those in config/application.rb. # The test environment is used exclusively to run your application's diff --git a/backend/config/environments/test.rb b/backend/config/environments/test.rb index 8e5cbde53..eac835b70 100644 --- a/backend/config/environments/test.rb +++ b/backend/config/environments/test.rb @@ -1,4 +1,6 @@ +require 'sidekiq/testing' Rails.application.configure do + Sidekiq::Logging.logger = nil # Settings specified here will take precedence over those in config/application.rb. # The test environment is used exclusively to run your application's