summaryrefslogtreecommitdiff
path: root/spec/features/global_search_spec.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-10-30 09:08:39 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2020-10-30 09:08:39 +0000
commit6462f5216f381ffb04665581e71b70e859a6f398 (patch)
tree980c4c4bf913fae0316a1b7fcf63ddfcfd7b762d /spec/features/global_search_spec.rb
parentd91998617f3825e906b35f4406d641af7f59e832 (diff)
downloadgitlab-ce-6462f5216f381ffb04665581e71b70e859a6f398.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/features/global_search_spec.rb')
-rw-r--r--spec/features/global_search_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/features/global_search_spec.rb b/spec/features/global_search_spec.rb
index 0ca626381d4..e6e4a55c1bb 100644
--- a/spec/features/global_search_spec.rb
+++ b/spec/features/global_search_spec.rb
@@ -36,15 +36,15 @@ RSpec.describe 'Global search' do
end
end
- it 'closes the dropdown on blur', :js, quarantine: 'https://gitlab.com/gitlab-org/gitlab/-/issues/201841' do
+ it 'closes the dropdown on blur', :js do
+ find('#search').click
fill_in 'search', with: "a"
- dropdown = find('.js-dashboard-search-options')
- expect(dropdown[:class]).to include 'show'
+ expect(page).to have_selector("div[data-testid='dashboard-search-options'].show")
find('#search').send_keys(:backspace)
find('body').click
- expect(dropdown[:class]).not_to include 'show'
+ expect(page).to have_no_selector("div[data-testid='dashboard-search-options'].show")
end
end