mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-25 16:03:48 +00:00
17 lines
336 B
Ruby
17 lines
336 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe '"Your work" navbar', :js, 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
|