Files
gitlab-foss/spec/support/enable_multiple_database_metrics_by_default.rb
2021-08-06 15:10:05 +00:00

9 lines
208 B
Ruby

# 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