Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
e0913fc6
Commit
e0913fc6
authored
Jun 14, 2021
by
Andrejs Cunskis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
E2E: Remove subgroup validation for bulk import
parent
55bedf39
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
qa/qa/specs/features/browser_ui/1_manage/group/bulk_import_group_spec.rb
...tures/browser_ui/1_manage/group/bulk_import_group_spec.rb
+4
-3
No files found.
qa/qa/specs/features/browser_ui/1_manage/group/bulk_import_group_spec.rb
View file @
e0913fc6
...
...
@@ -100,10 +100,11 @@ module QA
expect
(
import_page
).
to
have_imported_group
(
source_group
.
path
,
wait:
180
)
expect
{
imported_group
.
reload!
}.
to
eventually_eq
(
source_group
).
within
(
duration:
10
)
expect
{
imported_subgroup
.
reload!
}.
to
eventually_eq
(
subgroup
).
within
(
duration:
30
)
expect
{
imported_group
.
labels
}.
to
eventually_include
(
*
source_group
.
labels
).
within
(
duration:
10
)
expect
{
imported_subgroup
.
labels
}.
to
eventually_include
(
*
subgroup
.
labels
).
within
(
duration:
30
)
# Do not validate subgroups until https://gitlab.com/gitlab-org/gitlab/-/issues/332818 is resolved
# expect { imported_subgroup.reload! }.to eventually_eq(subgroup).within(duration: 30)
# expect { imported_subgroup.labels }.to eventually_include(*subgroup.labels).within(duration: 30)
end
end
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment