debian-mirror-gitlab/spec/features/dashboard/navbar_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
331 B
Ruby
Raw Normal View History

2023-03-17 16:20:25 +05:30
# 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