diff options
author | Phil Hughes <me@iamphill.com> | 2016-06-01 10:11:30 +0100 |
---|---|---|
committer | Jacob Schatz <jschatz1@gmail.com> | 2016-06-05 16:15:51 -0400 |
commit | 515a5aeb3325848de22eec6421b1a0dcaf434e2c (patch) | |
tree | 5b088b12085a0aeb17299664f032db06f92955ab /spec/features/issues_spec.rb | |
parent | 86df113907907b282de226e86b27e1136432563e (diff) | |
download | gitlab-ce-515a5aeb3325848de22eec6421b1a0dcaf434e2c.tar.gz |
Fixed JS errorsjquery2
CHANGELOG item
Diffstat (limited to 'spec/features/issues_spec.rb')
-rw-r--r-- | spec/features/issues_spec.rb | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/spec/features/issues_spec.rb b/spec/features/issues_spec.rb index a4eed5031c9..460d7f82b36 100644 --- a/spec/features/issues_spec.rb +++ b/spec/features/issues_spec.rb @@ -365,13 +365,9 @@ describe 'Issues', feature: true do page.within('.assignee') do expect(page).to have_content "#{@user.name}" - end - find('.block.assignee .edit-link').click - sleep 2 # wait for ajax stuff to complete - first('.dropdown-menu-user-link').click - sleep 2 - page.within('.assignee') do + click_link 'Edit' + click_link 'Unassigned' expect(page).to have_content 'No assignee' end |