Files
gitlab-foss/spec/support/rate_limiter.rb
2022-11-16 18:11:26 +00:00

8 lines
202 B
Ruby

# frozen_string_literal: true
RSpec.configure do |config|
config.before(:each, :disable_rate_limiter) do
allow(Gitlab::ApplicationRateLimiter).to receive(:throttled?).and_return(false)
end
end