I am new to rails and testing. The documentation says to add this code to spec_helper.rb:
RSpec::Sidekiq.configure do |config|
config.warn_when_jobs_not_processed_by_sidekiq = false
end
but when I do this, I get an error message:
uninitialized constant RSpec::Sidekiq (NameError)
source
share