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
0ca73199
Commit
0ca73199
authored
Jun 10, 2020
by
Kushal Pandya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add changelog entry
parent
e2216b67
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
5 deletions
+10
-5
ee/changelogs/unreleased/kp-fix-roadmap-epics-list.yml
ee/changelogs/unreleased/kp-fix-roadmap-epics-list.yml
+5
-0
ee/spec/frontend/roadmap/components/epics_list_section_spec.js
...ec/frontend/roadmap/components/epics_list_section_spec.js
+5
-5
No files found.
ee/changelogs/unreleased/kp-fix-roadmap-epics-list.yml
0 → 100644
View file @
0ca73199
---
title
:
Include Epics in Roadmap whose parents are not part of Roadmap
merge_request
:
34243
author
:
type
:
fixed
ee/spec/frontend/roadmap/components/epics_list_section_spec.js
View file @
0ca73199
...
...
@@ -122,13 +122,13 @@ describe('EpicsListSectionComponent', () => {
describe
(
'
epicsWithAssociatedParents
'
,
()
=>
{
it
(
'
should return epics which contain parent associations
'
,
()
=>
{
wrapper
=
createComponent
({
wrapper
.
setProps
({
epics
:
mockEpicsWithParents
,
});
expect
(
wrapper
.
vm
.
epicsWithAssociatedParents
).
toEqual
(
mockEpicsWithParents
);
wrapper
.
destroy
(
);
return
wrapper
.
vm
.
$nextTick
(()
=>
{
expect
(
wrapper
.
vm
.
epicsWithAssociatedParents
).
toEqual
(
mockEpicsWithParents
);
}
);
});
});
...
...
@@ -137,7 +137,7 @@ describe('EpicsListSectionComponent', () => {
store
.
state
.
epicIds
=
[
'
1
'
,
'
2
'
,
'
3
'
];
});
it
(
'
returns
findParentEpics method
by default
'
,
()
=>
{
it
(
'
returns
epicsWithAssociatedParents computed prop
by default
'
,
()
=>
{
expect
(
wrapper
.
vm
.
displayedEpics
).
toEqual
(
wrapper
.
vm
.
epicsWithAssociatedParents
);
});
...
...
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