Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2017-02-17 23:23:29 +0300
committerAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2017-02-17 23:23:29 +0300
commitee444bf340616192dc1e0807676bbe58ad1c3905 (patch)
tree80022fd07b28a1f96d6d08f9866ccdcd026422fb /spec
parent0c6b1ad858270c772efc37f7e721a6825493d9ed (diff)
Fix issuables_counter_spec
Diffstat (limited to 'spec')
-rw-r--r--spec/features/dashboard/issuables_counter_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/features/dashboard/issuables_counter_spec.rb b/spec/features/dashboard/issuables_counter_spec.rb
index 603076d7d37..a1718912fc6 100644
--- a/spec/features/dashboard/issuables_counter_spec.rb
+++ b/spec/features/dashboard/issuables_counter_spec.rb
@@ -35,9 +35,9 @@ describe 'Navigation bar counter', feature: true, js: true, caching: true do
end
def expect_counters(issuable_type, count)
- dashboard_count = find('li.active span.badge')
+ dashboard_count = find('li.active')
find('.global-dropdown-toggle').click
- nav_count = find(".dashboard-shortcuts-#{issuable_type} span.badge")
+ nav_count = find(".dashboard-shortcuts-#{issuable_type}")
expect(nav_count).to have_content(count)
expect(dashboard_count).to have_content(count)