summaryrefslogtreecommitdiff
path: root/spec/features/projects/user_uses_shortcuts_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/features/projects/user_uses_shortcuts_spec.rb')
-rw-r--r--spec/features/projects/user_uses_shortcuts_spec.rb44
1 files changed, 0 insertions, 44 deletions
diff --git a/spec/features/projects/user_uses_shortcuts_spec.rb b/spec/features/projects/user_uses_shortcuts_spec.rb
index 2f7844ff615..7bb15451538 100644
--- a/spec/features/projects/user_uses_shortcuts_spec.rb
+++ b/spec/features/projects/user_uses_shortcuts_spec.rb
@@ -77,20 +77,6 @@ RSpec.describe 'User uses shortcuts', :js do
expect(page).to have_active_navigation(project.name)
end
- context 'when feature flag :sidebar_refactor is disabled' do
- it 'redirects to the details page' do
- stub_feature_flags(sidebar_refactor: false)
-
- visit project_issues_path(project)
-
- find('body').native.send_key('g')
- find('body').native.send_key('p')
-
- expect(page).to have_active_navigation('Project')
- expect(page).to have_active_sub_navigation('Details')
- end
- end
-
it 'redirects to the activity page' do
find('body').native.send_key('g')
find('body').native.send_key('v')
@@ -196,36 +182,6 @@ RSpec.describe 'User uses shortcuts', :js do
expect(page).to have_active_navigation('Monitor')
expect(page).to have_active_sub_navigation('Metrics')
end
-
- context 'when feature flag :sidebar_refactor is disabled' do
- before do
- stub_feature_flags(sidebar_refactor: false)
- end
-
- it 'redirects to the Operations page' do
- find('body').native.send_key('g')
- find('body').native.send_key('l')
-
- expect(page).to have_active_navigation('Operations')
- expect(page).to have_active_sub_navigation('Metrics')
- end
-
- it 'redirects to the Kubernetes page with active Operations' do
- find('body').native.send_key('g')
- find('body').native.send_key('k')
-
- expect(page).to have_active_navigation('Operations')
- expect(page).to have_active_sub_navigation('Kubernetes')
- end
-
- it 'redirects to the Environments page' do
- find('body').native.send_key('g')
- find('body').native.send_key('e')
-
- expect(page).to have_active_navigation('Operations')
- expect(page).to have_active_sub_navigation('Environments')
- end
- end
end
context 'when navigating to the Infrastructure pages' do