summaryrefslogtreecommitdiff
path: root/spec/features/dashboard/shortcuts_spec.rb
diff options
context:
space:
mode:
authorAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2017-02-14 12:27:47 -0600
committerAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2017-02-15 13:31:18 -0600
commit8c1b41f12b5ec8dd3dd2547d3ad729e71c4ebadd (patch)
tree222a746fc2d0a811149389ff74053e4a3fe9e456 /spec/features/dashboard/shortcuts_spec.rb
parent2fc559142e00cc15a47c49c190666284221cc9b0 (diff)
downloadgitlab-ce-8c1b41f12b5ec8dd3dd2547d3ad729e71c4ebadd.tar.gz
Move migration to post_migrate; fix shortcuts_spec
Diffstat (limited to 'spec/features/dashboard/shortcuts_spec.rb')
-rw-r--r--spec/features/dashboard/shortcuts_spec.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/spec/features/dashboard/shortcuts_spec.rb b/spec/features/dashboard/shortcuts_spec.rb
index d9be4e5dbdd..c5a0d1c6d99 100644
--- a/spec/features/dashboard/shortcuts_spec.rb
+++ b/spec/features/dashboard/shortcuts_spec.rb
@@ -24,6 +24,7 @@ feature 'Dashboard shortcuts', feature: true, js: true do
end
def ensure_active_main_tab(content)
- expect(find('.nav-sidebar li.active')).to have_content(content)
+ find('.global-dropdown-toggle').trigger('click')
+ expect(find('.global-dropdown-menu li.active')).to have_content(content)
end
end