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

44 lines
1.2 KiB
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
require 'spec_helper'
2021-09-04 01:27:46 +05:30
# TODO: This entire spec file can be deleted once the combined_menu feature is fully rolled
# out and the flag is removed, because it will then be irrelevant (there will be no more tabs).
# Feature flag removal issue: https://gitlab.com/gitlab-org/gitlab/-/issues/324086
2018-03-17 18:26:18 +05:30
RSpec.describe 'Dashboard Active Tab', :js do
2021-06-08 01:23:25 +05:30
shared_examples 'combined_menu: feature flag examples' do
before do
sign_in(create(:user))
end
2021-04-29 21:17:54 +05:30
2021-06-08 01:23:25 +05:30
shared_examples 'page has active tab' do |title|
it "#{title} tab" do
subject
2017-08-17 22:00:37 +05:30
2021-06-08 01:23:25 +05:30
expect(page).to have_selector('.navbar-sub-nav li.active', count: 1)
expect(find('.navbar-sub-nav li.active')).to have_content(title)
end
end
context 'on dashboard projects' do
it_behaves_like 'page has active tab', 'Projects' do
subject { visit dashboard_projects_path }
end
end
2018-11-18 11:00:15 +05:30
2021-06-08 01:23:25 +05:30
context 'on dashboard groups' do
it_behaves_like 'page has active tab', 'Groups' do
subject { visit dashboard_groups_path }
end
2017-08-17 22:00:37 +05:30
end
end
2021-06-08 01:23:25 +05:30
context 'with combined_menu feature flag off' do
before do
stub_feature_flags(combined_menu: false)
2017-08-17 22:00:37 +05:30
end
2021-06-08 01:23:25 +05:30
it_behaves_like 'combined_menu: feature flag examples'
end
2017-08-17 22:00:37 +05:30
end