gitlab-org--gitlab-foss/app/helpers/performance_bar_helper.rb
2017-07-06 19:37:31 +00:00

7 lines
242 B
Ruby

module PerformanceBarHelper
# This is a hack since using `alias_method :performance_bar_enabled?, :peek_enabled?`
# in WithPerformanceBar breaks tests (but works in the browser).
def performance_bar_enabled?
peek_enabled?
end
end