Commit 6c9836c7 authored by Peter Leitzen's avatar Peter Leitzen

Merge branch 'filter-issues' into 'master'

Fix duplicate spec in filter issues

See merge request gitlab-org/gitlab!28860
parents 81e4711f 2c507f7c
...@@ -388,7 +388,6 @@ Performance/ChainArrayAllocation: ...@@ -388,7 +388,6 @@ Performance/ChainArrayAllocation:
# https://gitlab.com/gitlab-org/gitlab/-/issues/212541 # https://gitlab.com/gitlab-org/gitlab/-/issues/212541
RSpec/RepeatedExample: RSpec/RepeatedExample:
Exclude: Exclude:
- 'spec/features/issues/filtered_search/filter_issues_spec.rb'
- 'spec/features/merge_request/user_posts_diff_notes_spec.rb' - 'spec/features/merge_request/user_posts_diff_notes_spec.rb'
- 'spec/features/projects/files/template_type_dropdown_spec.rb' - 'spec/features/projects/files/template_type_dropdown_spec.rb'
- 'spec/helpers/users_helper_spec.rb' - 'spec/helpers/users_helper_spec.rb'
......
---
title: Fix duplicate spec in filter issues
merge_request: 28860
author: Rajendra Kadam
type: added
...@@ -224,14 +224,6 @@ describe 'Filter issues', :js do ...@@ -224,14 +224,6 @@ describe 'Filter issues', :js do
expect_no_issues_list expect_no_issues_list
expect_filtered_search_input_empty expect_filtered_search_input_empty
end end
it 'does show issues for bug label' do
input_filtered_search("label:!=~#{bug_label.title}")
expect_tokens([label_token(bug_label.title)])
expect_issues_list_count(6)
expect_filtered_search_input_empty
end
end end
context 'label with multiple words' do context 'label with multiple words' do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment