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:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-12-09 00:09:17 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-12-09 00:09:17 +0300
commit1690313142e39075d231271bfdbc9ad95957106a (patch)
tree971c63ccab0947c43fc777ea45f19495d855062b /spec/features/boards
parent54943f1e68bd4e1951bf3d6c438acab8d783fc31 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/features/boards')
-rw-r--r--spec/features/boards/boards_spec.rb20
1 files changed, 10 insertions, 10 deletions
diff --git a/spec/features/boards/boards_spec.rb b/spec/features/boards/boards_spec.rb
index 072cfacbe3b..3e2e391d060 100644
--- a/spec/features/boards/boards_spec.rb
+++ b/spec/features/boards/boards_spec.rb
@@ -89,7 +89,7 @@ RSpec.describe 'Project issue boards', :js, feature_category: :team_planning do
let_it_be(:issue10, reload: true) { create(:labeled_issue, project: project, title: 'issue +', description: 'A+ great issue', labels: [a_plus]) }
before do
- visit_project_board(project, board)
+ visit_project_board_path_without_query_limit(project, board)
end
it 'shows description tooltip on list title', :quarantine do
@@ -103,7 +103,7 @@ RSpec.describe 'Project issue boards', :js, feature_category: :team_planning do
wait_for_board_cards(3, 2)
end
- it 'shows confidential issues with icon' do
+ it 'shows confidential issues with icon', quarantine: 'https://gitlab.com/gitlab-org/gitlab/-/issues/383970' do
page.within(find('.board:nth-child(2)')) do
expect(page).to have_selector('.confidential-icon', count: 1)
end
@@ -179,7 +179,7 @@ RSpec.describe 'Project issue boards', :js, feature_category: :team_planning do
end
end
- context 'closed' do
+ context 'closed', quarantine: 'https://gitlab.com/gitlab-org/gitlab/-/issues/383970' do
it 'shows list of closed issues' do
wait_for_board_cards(4, 1)
wait_for_requests
@@ -256,7 +256,7 @@ RSpec.describe 'Project issue boards', :js, feature_category: :team_planning do
expect(page).to have_selector(selector, text: development.title, count: 1)
end
- it 'issue moves between lists and does not show the "Development" label since the card is in the "Development" list label' do
+ it 'issue moves between lists and does not show the "Development" label since the card is in the "Development" list label', quarantine: 'https://gitlab.com/gitlab-org/gitlab/-/issues/383970' do
drag(list_from_index: 1, from_index: 1, list_to_index: 2)
wait_for_board_cards(2, 7)
@@ -267,7 +267,7 @@ RSpec.describe 'Project issue boards', :js, feature_category: :team_planning do
expect(find('.board:nth-child(3)').all('.board-card').last).not_to have_content(development.title)
end
- it 'issue moves between lists and does not show the "Planning" label since the card is in the "Planning" list label' do
+ it 'issue moves between lists and does not show the "Planning" label since the card is in the "Planning" list label', quarantine: 'https://gitlab.com/gitlab-org/gitlab/-/issues/383970' do
drag(list_from_index: 2, list_to_index: 1)
wait_for_board_cards(2, 9)
@@ -278,7 +278,7 @@ RSpec.describe 'Project issue boards', :js, feature_category: :team_planning do
expect(find('.board:nth-child(2)').all('.board-card').first).not_to have_content(planning.title)
end
- it 'issue moves from closed' do
+ it 'issue moves from closed', quarantine: 'https://gitlab.com/gitlab-org/gitlab/-/issues/383970' do
drag(list_from_index: 2, list_to_index: 3)
wait_for_board_cards(2, 8)
@@ -295,7 +295,7 @@ RSpec.describe 'Project issue boards', :js, feature_category: :team_planning do
end
end
- context 'list header' do
+ context 'list header', quarantine: 'https://gitlab.com/gitlab-org/gitlab/-/issues/383970' do
let(:total_planning_issues) { "8" }
it 'shows issue count on the list' do
@@ -319,7 +319,7 @@ RSpec.describe 'Project issue boards', :js, feature_category: :team_planning do
wait_for_empty_boards((3..4))
end
- it 'filters by assignee' do
+ it 'filters by assignee', quarantine: 'https://gitlab.com/gitlab-org/gitlab/-/issues/383970' do
set_filter("assignee", user.username)
click_on user.username
filter_submit.click
@@ -341,7 +341,7 @@ RSpec.describe 'Project issue boards', :js, feature_category: :team_planning do
wait_for_board_cards(4, 0)
end
- it 'filters by label' do
+ it 'filters by label', quarantine: 'https://gitlab.com/gitlab-org/gitlab/-/issues/383970' do
set_filter("label", testing.title)
click_on testing.title
filter_submit.click
@@ -400,7 +400,7 @@ RSpec.describe 'Project issue boards', :js, feature_category: :team_planning do
wait_for_board_cards(2, 8)
end
- it 'infinite scrolls list with label filter' do
+ it 'infinite scrolls list with label filter', quarantine: 'https://gitlab.com/gitlab-org/gitlab/-/issues/383970' do
create_list(:labeled_issue, 30, project: project, labels: [planning, testing])
set_filter("label", testing.title)