Commit c55fa903 authored by Illya Klymov's avatar Illya Klymov

Remove useless attachToDocument property

attachToDocument property is not needed
parent 4ac2a641
......@@ -26,7 +26,6 @@ describe('Panel Type', () => {
propsData,
store,
localVue,
attachToDocument: true,
});
};
......
......@@ -13,7 +13,6 @@ describe('noteActions', () => {
shallowMount(noteActions, {
store,
propsData,
attachToDocument: true,
});
beforeEach(() => {
......
......@@ -12,7 +12,6 @@ describe('project header component', () => {
propsData: {
project: mockOneProject,
},
attachToDocument: true,
});
};
......
......@@ -32,7 +32,6 @@ describe('PackagesApp', () => {
wrapper = mount(PackagesApp, {
propsData,
attachToDocument: true,
});
}
......
......@@ -30,7 +30,6 @@ const createComponent = ({ slots } = {}) => {
store.dispatch('setChildrenCount', mockParentItem.descendantCounts);
return shallowMount(RelatedItemsTreeHeader, {
attachToDocument: true,
store,
slots,
});
......
......@@ -45,7 +45,6 @@ const createComponent = (parentItem = mockParentItem, item = mockItem) => {
});
return shallowMount(TreeItemBody, {
attachToDocument: true,
store,
propsData: {
parentItem,
......
......@@ -14,7 +14,6 @@ describe('EE MRWidget approvals summary optional', () => {
const createComponent = (props = {}) => {
wrapper = shallowMount(ApprovalsSummaryOptional, {
propsData: props,
attachToDocument: true,
});
};
......
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