Commit 116c133e authored by Mike Greiling's avatar Mike Greiling

Merge branch 'xanf-remove-attachToDocument-196764' into 'master'

Remove useless attachToDocument usage in spec/frontend

Closes #196764

See merge request gitlab-org/gitlab!23040
parents 4e435efc 64c01806
...@@ -50,7 +50,6 @@ describe('Issue card component', () => { ...@@ -50,7 +50,6 @@ describe('Issue card component', () => {
rootPath: '/', rootPath: '/',
}, },
store, store,
attachToDocument: true,
}); });
}); });
......
...@@ -10,7 +10,6 @@ const createComponent = props => ...@@ -10,7 +10,6 @@ const createComponent = props =>
propsData: { propsData: {
...props, ...props,
}, },
attachToDocument: true,
}); });
describe('Limit warning component', () => { describe('Limit warning component', () => {
......
...@@ -13,7 +13,6 @@ describe('Erased block', () => { ...@@ -13,7 +13,6 @@ describe('Erased block', () => {
const createComponent = props => { const createComponent = props => {
wrapper = mount(ErasedBlock, { wrapper = mount(ErasedBlock, {
propsData: props, propsData: props,
attachToDocument: true,
}); });
}; };
......
...@@ -35,7 +35,6 @@ describe('DiscussionActions', () => { ...@@ -35,7 +35,6 @@ describe('DiscussionActions', () => {
shouldShowJumpToNextDiscussion: true, shouldShowJumpToNextDiscussion: true,
...props, ...props,
}, },
attachToDocument: true,
}); });
}; };
......
...@@ -31,7 +31,6 @@ describe('Release detail component', () => { ...@@ -31,7 +31,6 @@ describe('Release detail component', () => {
wrapper = mount(ReleaseDetailApp, { wrapper = mount(ReleaseDetailApp, {
store, store,
attachToDocument: true,
}); });
return wrapper.vm.$nextTick(); return wrapper.vm.$nextTick();
......
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