debian-mirror-gitlab/spec/features/dashboard/navbar_spec.rb
2023-03-17 16:20:25 +05:30

16 lines
331 B
Ruby

# 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