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
diff options
context:
space:
mode:
authorJose Ivan Vargas <jvargas@gitlab.com>2017-02-20 18:39:23 +0300
committerJose Ivan Vargas <jvargas@gitlab.com>2017-02-24 00:47:23 +0300
commit46eefbda3ae55394bae63872c8ff3d86500a1ddc (patch)
tree6963d814927f6205836849b8226420b79d70b7a8 /spec/features/user_callout_spec.rb
parentbcab4bb5efd1cc499dc7d753115fe91b98f27bda (diff)
Moved the dismiss-icon listener to close the callout to a button
Diffstat (limited to 'spec/features/user_callout_spec.rb')
-rw-r--r--spec/features/user_callout_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/features/user_callout_spec.rb b/spec/features/user_callout_spec.rb
index 53a87d3c224..336c4092c98 100644
--- a/spec/features/user_callout_spec.rb
+++ b/spec/features/user_callout_spec.rb
@@ -30,7 +30,7 @@ describe 'User Callouts', js: true do
it 'hides the user callout when click on the dismiss icon' do
visit user_path(user)
within('.user-callout') do
- find('.dismiss-icon').click
+ find('.close-user-callout').click
end
expect(page).not_to have_selector('#user-callout')
end