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:
authorFelipe Artur <felipefac@gmail.com>2018-04-05 00:43:33 +0300
committerFelipe Artur <felipefac@gmail.com>2018-04-05 20:58:49 +0300
commit22423d284704c3ec2f7715736a75155d14ff413d (patch)
treeaf4f3c9ec4e2e486af3c7d292d54d07ccc2ff741 /spec/features/labels_hierarchy_spec.rb
parent6b3585d8ea15a7ee1a5cd2f5799caace48ab0c32 (diff)
Show issues of subgroups in group-level issue board
Diffstat (limited to 'spec/features/labels_hierarchy_spec.rb')
-rw-r--r--spec/features/labels_hierarchy_spec.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/spec/features/labels_hierarchy_spec.rb b/spec/features/labels_hierarchy_spec.rb
index 99e1fb30d5b..d4a49a1cbf4 100644
--- a/spec/features/labels_hierarchy_spec.rb
+++ b/spec/features/labels_hierarchy_spec.rb
@@ -116,11 +116,13 @@ feature 'Labels Hierarchy', :js, :nested_groups do
wait_for_requests
if board
- pending("Waiting for https://gitlab.com/gitlab-org/gitlab-ce/issues/44270")
-
select_label_on_dropdown(group_label_3.title)
expect(page).to have_selector('.card-title') do |card|
+ expect(card).not_to have_selector('a', text: labeled_issue_2.title)
+ end
+
+ expect(page).to have_selector('.card-title') do |card|
expect(card).to have_selector('a', text: labeled_issue_3.title)
end
else