Commit 096ab61d authored by Paul Slaughter's avatar Paul Slaughter

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

Remove useless attachToDocument usage in spec/frontend/pipelines

Closes #196760

See merge request gitlab-org/gitlab!23044
parents 2ab56602 75dbbb91
...@@ -19,7 +19,6 @@ describe('pipeline graph action component', () => { ...@@ -19,7 +19,6 @@ describe('pipeline graph action component', () => {
link: 'foo', link: 'foo',
actionIcon: 'cancel', actionIcon: 'cancel',
}, },
attachToDocument: true,
}); });
}); });
......
...@@ -7,7 +7,6 @@ describe('pipeline graph job item', () => { ...@@ -7,7 +7,6 @@ describe('pipeline graph job item', () => {
const createWrapper = propsData => { const createWrapper = propsData => {
wrapper = mount(JobItem, { wrapper = mount(JobItem, {
attachToDocument: true,
propsData, propsData,
}); });
}; };
......
...@@ -10,7 +10,6 @@ describe('Linked pipeline', () => { ...@@ -10,7 +10,6 @@ describe('Linked pipeline', () => {
const createWrapper = propsData => { const createWrapper = propsData => {
wrapper = mount(LinkedPipelineComponent, { wrapper = mount(LinkedPipelineComponent, {
attachToDocument: true,
propsData, propsData,
}); });
}; };
......
...@@ -24,7 +24,6 @@ describe('Pipelines Triggerer', () => { ...@@ -24,7 +24,6 @@ describe('Pipelines Triggerer', () => {
const createComponent = () => { const createComponent = () => {
wrapper = shallowMount(pipelineTriggerer, { wrapper = shallowMount(pipelineTriggerer, {
propsData: mockData, propsData: mockData,
attachToDocument: true,
}); });
}; };
......
...@@ -10,7 +10,6 @@ describe('Pipeline Url Component', () => { ...@@ -10,7 +10,6 @@ describe('Pipeline Url Component', () => {
const createComponent = props => { const createComponent = props => {
wrapper = shallowMount(PipelineUrlComponent, { wrapper = shallowMount(PipelineUrlComponent, {
attachToDocument: true,
propsData: props, propsData: props,
}); });
}; };
......
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