debian-mirror-gitlab/spec/support/helpers/metrics_dashboard_url_helpers.rb
2020-04-08 14:13:33 +05:30

17 lines
500 B
Ruby

# frozen_string_literal: true
module MetricsDashboardUrlHelpers
# Using the url_helpers available in the test suite uses
# the sample host, but the urls generated may need to
# point to the configured host in the :js trait
def urls
::Gitlab::Routing.url_helpers
end
def clear_host_from_memoized_variables
[:metrics_regex, :grafana_regex, :clusters_regex, :alert_regex].each do |method_name|
Gitlab::Metrics::Dashboard::Url.clear_memoization(method_name)
end
end
end