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
9877a42a
Commit
9877a42a
authored
Jan 15, 2020
by
Mike Kozono
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Try to fix flaky tests
parent
403d5d6f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
ee/spec/lib/ee/gitlab/import_export/group_tree_saver_spec.rb
ee/spec/lib/ee/gitlab/import_export/group_tree_saver_spec.rb
+10
-2
No files found.
ee/spec/lib/ee/gitlab/import_export/group_tree_saver_spec.rb
View file @
9877a42a
...
...
@@ -41,7 +41,11 @@ describe Gitlab::ImportExport::GroupTreeSaver do
it
'saves parent of epic'
do
expect_successful_save
(
group_tree_saver
)
parent
=
saved_group_json
[
'epics'
].
first
[
'parent'
]
child
=
saved_group_json
[
'epics'
].
find
do
|
attrs
|
attrs
[
'id'
]
==
epic
.
id
end
parent
=
child
[
'parent'
]
expect
(
parent
).
not_to
be_empty
expect
(
parent
[
'id'
]).
to
eq
(
parent_epic
.
id
)
...
...
@@ -50,7 +54,11 @@ describe Gitlab::ImportExport::GroupTreeSaver do
it
'saves epic notes'
do
expect_successful_save
(
group_tree_saver
)
notes
=
saved_group_json
[
'epics'
].
first
[
'notes'
]
child
=
saved_group_json
[
'epics'
].
find
do
|
attrs
|
attrs
[
'id'
]
==
epic
.
id
end
notes
=
child
[
'notes'
]
expect
(
notes
).
not_to
be_empty
expect
(
notes
.
first
[
'note'
]).
to
eq
(
note
.
note
)
...
...
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