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

navbar_spec.rb « explore « features « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c172760eb2c326b4592eddc720b63b3d92c519f7 (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 '"Explore" navbar', :js, feature_category: :navigation do
  include_context '"Explore" navbar structure'

  it_behaves_like 'verified navigation bar' do
    before do
      stub_feature_flags(global_ci_catalog: false)
      visit explore_projects_path
    end
  end

  context "with 'global_ci_catalog' enabled" do
    include_context '"Explore" navbar structure with global_ci_catalog FF'

    it_behaves_like 'verified navigation bar', global_ci_catalog: true do
      before do
        stub_feature_flags(global_ci_catalog: true)
        visit explore_projects_path
      end
    end
  end
end