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
db4319b8
Commit
db4319b8
authored
Oct 20, 2021
by
Florie Guibert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Consolidate labels widget architecture
Review feedback
parent
bfde40cb
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
spec/frontend/vue_shared/components/sidebar/labels_select_widget/labels_select_root_spec.js
...s/sidebar/labels_select_widget/labels_select_root_spec.js
+2
-2
No files found.
spec/frontend/vue_shared/components/sidebar/labels_select_widget/labels_select_root_spec.js
View file @
db4319b8
...
@@ -122,9 +122,9 @@ describe('LabelsSelectRoot', () => {
...
@@ -122,9 +122,9 @@ describe('LabelsSelectRoot', () => {
});
});
});
});
it
(
'
emits `updateSelectedLabels` event on dropdown contents `setLabels` event
'
,
async
()
=>
{
it
(
'
emits `updateSelectedLabels` event on dropdown contents `setLabels` event
if iid is not set
'
,
async
()
=>
{
const
label
=
{
id
:
'
gid://gitlab/ProjectLabel/1
'
};
const
label
=
{
id
:
'
gid://gitlab/ProjectLabel/1
'
};
createComponent
();
createComponent
(
{
config
:
{
...
mockConfig
,
iid
:
undefined
}
}
);
findDropdownContents
().
vm
.
$emit
(
'
setLabels
'
,
[
label
]);
findDropdownContents
().
vm
.
$emit
(
'
setLabels
'
,
[
label
]);
expect
(
wrapper
.
emitted
(
'
updateSelectedLabels
'
)).
toEqual
([[[
label
]]]);
expect
(
wrapper
.
emitted
(
'
updateSelectedLabels
'
)).
toEqual
([[[
label
]]]);
...
...
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