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

user_searches_in_settings_spec.rb « settings « groups « features « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 819d0c4fabab7a4dfdd049e9bc61021dff908223 (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
28
29
30
31
32
33
34
35
36
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'User searches group settings', :js do
  let_it_be(:user) { create(:user) }
  let_it_be(:group) { create(:group) }
  let_it_be(:project) { create(:project, :repository, namespace: group) }

  before do
    group.add_owner(user)
    sign_in(user)
  end

  context 'in general settings page' do
    let(:visit_path) { edit_group_path(group) }

    it_behaves_like 'can search settings with feature flag check', 'Naming', 'Permissions'
  end

  context 'in Repository page' do
    before do
      visit group_settings_repository_path(group)
    end

    it_behaves_like 'can search settings', 'Deploy tokens', 'Default initial branch name'
  end

  context 'in CI/CD page' do
    before do
      visit group_settings_ci_cd_path(group)
    end

    it_behaves_like 'can search settings', 'Variables', 'Runners'
  end
end