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

navbar_spec.rb « dashboard « features « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 30e7f2d2e4ec7a7d7be94ad29564ba216e71899b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe '"Your work" navbar', feature_category: :navigation do
  include_context 'dashboard navbar structure'

  let_it_be(:user) { create(:user, :no_super_sidebar) }

  it_behaves_like 'verified navigation bar' do
    before do
      sign_in(user)
      visit root_path
    end
  end
end