Welcome to mirror list, hosted at ThFree Co, Russian Federation.

rate_limiter.rb « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 525d593c293deedd861ff3983c3b543a4148d168 (plain)
1
2
3
4
5
6
7
# 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