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

instance_statistics_spec.rb « instance_statistics « features « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7695bf7874b32c9b294f3e45626fc987d17fd24a (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Cohorts page', :js do
  before do
    sign_in(create(:admin))
  end

  it 'hides cohorts nav button when usage ping is disabled' do
    stub_application_setting(usage_ping_enabled: false)

    visit instance_statistics_root_path

    expect(find('.nav-sidebar')).not_to have_content('Cohorts')
  end

  it 'shows cohorts nav button when usage ping is enabled' do
    stub_application_setting(usage_ping_enabled: true)

    visit instance_statistics_root_path

    expect(find('.nav-sidebar')).to have_content('Cohorts')
  end
end