summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnnabel Dunstone <annabel.dunstone@gmail.com>2016-06-02 17:37:37 -0600
committerAnnabel Dunstone <annabel.dunstone@gmail.com>2016-06-07 09:16:59 -0500
commitca985283b40783e498c181ac4612ddf23c421ff4 (patch)
tree7ad28d1cce5352ccdf74cdfdd482de6997fc63fc
parentffbd9cd02d701442b5304e84ad75d657eeb4e23f (diff)
downloadgitlab-ce-ca985283b40783e498c181ac4612ddf23c421ff4.tar.gz
Remove todos count tests in nav
-rw-r--r--features/steps/dashboard/todos.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/features/steps/dashboard/todos.rb b/features/steps/dashboard/todos.rb
index bd8a270202e..19fedfbfcdf 100644
--- a/features/steps/dashboard/todos.rb
+++ b/features/steps/dashboard/todos.rb
@@ -26,7 +26,6 @@ class Spinach::Features::DashboardTodos < Spinach::FeatureSteps
end
step 'I should see todos assigned to me' do
- page.within('.nav-sidebar') { expect(page).to have_content 'Todos 4' }
expect(page).to have_content 'To do 4'
expect(page).to have_content 'Done 0'
@@ -42,7 +41,6 @@ class Spinach::Features::DashboardTodos < Spinach::FeatureSteps
click_link 'Done'
end
- page.within('.nav-sidebar') { expect(page).to have_content 'Todos 3' }
expect(page).to have_content 'To do 3'
expect(page).to have_content 'Done 1'
should_not_see_todo "John Doe assigned you merge request #{merge_request.to_reference}"