diff options
author | Annabel Dunstone Gray <annabel.dunstone@gmail.com> | 2016-10-28 14:51:23 -0500 |
---|---|---|
committer | Annabel Dunstone Gray <annabel.dunstone@gmail.com> | 2016-11-01 10:58:07 -0500 |
commit | 441948f4382601f63326982c44919d1572390693 (patch) | |
tree | 39c2b624c2a169adcaf05d51826023654f6ddbef /features/steps | |
parent | 4281daf30a0319103e46b98cc2d0f64228415443 (diff) | |
download | gitlab-ce-441948f4382601f63326982c44919d1572390693.tar.gz |
Fix spinach tests
Diffstat (limited to 'features/steps')
-rw-r--r-- | features/steps/shared/sidebar_active_tab.rb | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/features/steps/shared/sidebar_active_tab.rb b/features/steps/shared/sidebar_active_tab.rb index 5c47238777f..07fff16e867 100644 --- a/features/steps/shared/sidebar_active_tab.rb +++ b/features/steps/shared/sidebar_active_tab.rb @@ -1,12 +1,8 @@ module SharedSidebarActiveTab include Spinach::DSL - step 'the active main tab should be Help' do - ensure_active_main_tab('Help') - end - step 'no other main tabs should be active' do - expect(page).to have_selector('.nav-sidebar > li.active', count: 1) + expect(page).to have_selector('.nav-sidebar li.active', count: 1) end def ensure_active_main_tab(content) @@ -17,6 +13,10 @@ module SharedSidebarActiveTab ensure_active_main_tab('Projects') end + step 'the active main tab should be Groups' do + ensure_active_main_tab('Groups') + end + step 'the active main tab should be Projects' do ensure_active_main_tab('Projects') end @@ -28,8 +28,4 @@ module SharedSidebarActiveTab step 'the active main tab should be Merge Requests' do ensure_active_main_tab('Merge Requests') end - - step 'the active main tab should be Help' do - ensure_active_main_tab('Help') - end end |