Commit 2584c5b5 authored by Florie Guibert's avatar Florie Guibert

Consolidate labels widget architecture

Fix tests
parent 9f13d025
...@@ -105,6 +105,7 @@ describe('~/boards/components/sidebar/board_sidebar_labels_select.vue', () => { ...@@ -105,6 +105,7 @@ describe('~/boards/components/sidebar/board_sidebar_labels_select.vue', () => {
describe('when labels are updated over existing labels', () => { describe('when labels are updated over existing labels', () => {
const testLabelsPayload = [ const testLabelsPayload = [
{ id: 5, set: true }, { id: 5, set: true },
{ id: 6, set: false },
{ id: 7, set: true }, { id: 7, set: true },
]; ];
const expectedLabels = [{ id: 5 }, { id: 7 }]; const expectedLabels = [{ id: 5 }, { id: 7 }];
......
...@@ -127,6 +127,6 @@ describe('LabelsSelectRoot', () => { ...@@ -127,6 +127,6 @@ describe('LabelsSelectRoot', () => {
createComponent({ config: { ...mockConfig, iid: undefined } }); 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([[{ labels: [label] }]]);
}); });
}); });
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment