summaryrefslogtreecommitdiff
path: root/spec/features/issues/todo_spec.rb
diff options
context:
space:
mode:
authorAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2017-03-29 21:16:57 +0000
committerJacob Schatz <jschatz@gitlab.com>2017-03-29 21:16:57 +0000
commitd08d12ae0395a7f95440e0f179de40283f2882ad (patch)
tree9950035e870b30ed4b38e13a70c79aa4f20c1ed2 /spec/features/issues/todo_spec.rb
parent4cf16426da202eb1b03197885d8437385d1e0dd0 (diff)
downloadgitlab-ce-d08d12ae0395a7f95440e0f179de40283f2882ad.tar.gz
Add shortcuts and counters to MRs and issues in navbar
Diffstat (limited to 'spec/features/issues/todo_spec.rb')
-rw-r--r--spec/features/issues/todo_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/features/issues/todo_spec.rb b/spec/features/issues/todo_spec.rb
index 41ff31d2b99..3fde85b0a5c 100644
--- a/spec/features/issues/todo_spec.rb
+++ b/spec/features/issues/todo_spec.rb
@@ -17,13 +17,13 @@ feature 'Manually create a todo item from issue', feature: true, js: true do
expect(page).to have_content 'Mark done'
end
- page.within '.header-content .todos-pending-count' do
+ page.within '.header-content .todos-count' do
expect(page).to have_content '1'
end
visit namespace_project_issue_path(project.namespace, project, issue)
- page.within '.header-content .todos-pending-count' do
+ page.within '.header-content .todos-count' do
expect(page).to have_content '1'
end
end
@@ -34,10 +34,10 @@ feature 'Manually create a todo item from issue', feature: true, js: true do
click_button 'Mark done'
end
- expect(page).to have_selector('.todos-pending-count', visible: false)
+ expect(page).to have_selector('.todos-count', visible: false)
visit namespace_project_issue_path(project.namespace, project, issue)
- expect(page).to have_selector('.todos-pending-count', visible: false)
+ expect(page).to have_selector('.todos-count', visible: false)
end
end