summaryrefslogtreecommitdiffstats
path: root/spec/rails_helper.rb
diff options
context:
space:
mode:
authorMatt Jankowski <mjankowski@thoughtbot.com>2017-05-10 10:16:42 -0400
committerEugen Rochko <eugen@zeonfederated.com>2017-05-10 16:16:42 +0200
commitfd66f7cdc0931a67a2e24d887fb79f44fc42e2bc (patch)
tree7de5942db8d4285bef289d384d863c89fd748dea /spec/rails_helper.rb
parentd142544159dee7a93e31c886737e12c5bca8844a (diff)
Disable sidekiq logging in test mode (#2962)
Diffstat (limited to 'spec/rails_helper.rb')
-rw-r--r--spec/rails_helper.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/spec/rails_helper.rb b/spec/rails_helper.rb
index c440574127f..c9bdc8adddf 100644
--- a/spec/rails_helper.rb
+++ b/spec/rails_helper.rb
@@ -14,6 +14,7 @@ Dir[Rails.root.join('spec/support/**/*.rb')].each { |f| require f }
ActiveRecord::Migration.maintain_test_schema!
WebMock.disable_net_connect!
Sidekiq::Testing.inline!
+Sidekiq::Logging.logger = nil
RSpec.configure do |config|
config.fixture_path = "#{::Rails.root}/spec/fixtures"