summaryrefslogtreecommitdiff
path: root/spec/features/dashboard/navbar_spec.rb
blob: ff0ff899fc29c2977ec4bf110e721109bfa697cb (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) }

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