Commit 75dbbb91 authored by Illya Klymov's avatar Illya Klymov

Remove useless attachToDocument property

attachToDocument property is not needed
parent 4ac2a641
...@@ -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