Fix test for network shortcut
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
This commit is contained in:
parent
2cb542b9d3
commit
2c61e3c057
3 changed files with 6 additions and 5 deletions
|
@ -19,7 +19,8 @@ Feature: Project Shortcuts
|
||||||
@javascript
|
@javascript
|
||||||
Scenario: Navigate to network tab
|
Scenario: Navigate to network tab
|
||||||
Given I press "g" and "n"
|
Given I press "g" and "n"
|
||||||
Then the active main tab should be Network
|
Then the active sub tab should be Network
|
||||||
|
And the active main tab should be Commits
|
||||||
|
|
||||||
@javascript
|
@javascript
|
||||||
Scenario: Navigate to graphs tab
|
Scenario: Navigate to graphs tab
|
||||||
|
|
|
@ -67,10 +67,6 @@ class Spinach::Features::ProjectActiveTab < Spinach::FeatureSteps
|
||||||
ensure_active_sub_tab('Commits')
|
ensure_active_sub_tab('Commits')
|
||||||
end
|
end
|
||||||
|
|
||||||
step 'the active sub tab should be Network' do
|
|
||||||
ensure_active_sub_tab('Network')
|
|
||||||
end
|
|
||||||
|
|
||||||
step 'the active sub tab should be Compare' do
|
step 'the active sub tab should be Compare' do
|
||||||
ensure_active_sub_tab('Compare')
|
ensure_active_sub_tab('Compare')
|
||||||
end
|
end
|
||||||
|
|
|
@ -49,4 +49,8 @@ module SharedProjectTab
|
||||||
step 'the active main tab should be Activity' do
|
step 'the active main tab should be Activity' do
|
||||||
ensure_active_main_tab('Activity')
|
ensure_active_main_tab('Activity')
|
||||||
end
|
end
|
||||||
|
|
||||||
|
step 'the active sub tab should be Network' do
|
||||||
|
ensure_active_sub_tab('Network')
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue