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

enable_multiple_database_metrics_by_default.rb « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6eeb4acd3d6cbc938a7f0e6612e1702247d56db2 (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

RSpec.configure do |config|
  config.before do
    # Enable this by default in all tests so it behaves like a FF
    stub_env('GITLAB_MULTIPLE_DATABASE_METRICS', '1')
  end
end