summaryrefslogtreecommitdiff
path: root/qa/qa/specs/features/browser_ui/14_analytics/service_ping_default_enabled_spec.rb
blob: 7826aca36018ff804cdd7f2631d97c293da34f7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# frozen_string_literal: true

module QA
  RSpec.describe 'Analytics' do
    describe 'Service ping default enabled' do
      context 'when using default enabled from gitlab.yml config', :requires_admin, except: { job: 'review-qa-*' } do
        before do
          Flow::Login.sign_in_as_admin

          Page::Main::Menu.perform(&:go_to_admin_area)
          Page::Admin::Menu.perform(&:go_to_metrics_and_profiling_settings)
        end

        it(
          'has service ping toggle enabled',
          testcase: 'https://gitlab.com/gitlab-org/gitlab/-/quality/test_cases/348335'
        ) do
          Page::Admin::Settings::MetricsAndProfiling.perform do |setting|
            setting.expand_usage_statistics do |page|
              expect(page).not_to have_disabled_usage_data_checkbox
            end
          end
        end
      end
    end
  end
end