summaryrefslogtreecommitdiff
path: root/spec/features/dashboard_issues_spec.rb
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2016-09-22 15:23:01 +0200
committerRémy Coutable <remy@rymai.me>2016-09-22 15:43:43 +0200
commitd4e91b22fcef64cef412eb81086ef1c90ca55f22 (patch)
tree137e11ccc16cb292b2f7fa9f1d2ad4fb14e3fcd7 /spec/features/dashboard_issues_spec.rb
parentdfc2fe774de3a1768afe4e2fb24f32858b430da5 (diff)
downloadgitlab-ce-d4e91b22fcef64cef412eb81086ef1c90ca55f22.tar.gz
Revert part of "Merge branch 'update_issues_mr_counter' into 'master'
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'spec/features/dashboard_issues_spec.rb')
-rw-r--r--spec/features/dashboard_issues_spec.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/spec/features/dashboard_issues_spec.rb b/spec/features/dashboard_issues_spec.rb
index fc914022a59..3fb1cb37544 100644
--- a/spec/features/dashboard_issues_spec.rb
+++ b/spec/features/dashboard_issues_spec.rb
@@ -21,9 +21,6 @@ describe "Dashboard Issues filtering", feature: true, js: true do
click_link 'No Milestone'
- page.within '.issues-state-filters' do
- expect(page).to have_selector('.active .badge', text: '1')
- end
expect(page).to have_selector('.issue', count: 1)
end
@@ -32,9 +29,6 @@ describe "Dashboard Issues filtering", feature: true, js: true do
click_link 'Any Milestone'
- page.within '.issues-state-filters' do
- expect(page).to have_selector('.active .badge', text: '2')
- end
expect(page).to have_selector('.issue', count: 2)
end
@@ -45,9 +39,6 @@ describe "Dashboard Issues filtering", feature: true, js: true do
click_link milestone.title
end
- page.within '.issues-state-filters' do
- expect(page).to have_selector('.active .badge', text: '1')
- end
expect(page).to have_selector('.issue', count: 1)
end
end