mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
Semicolons not required (#7035)
This commit is contained in:
parent
9a18ea28dd
commit
1c2728da91
@ -272,7 +272,7 @@ describe('Components > View > ActionButton.vue', () => {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
wrapper.vm.hasOwnProperty = () => Object.hasOwnProperty;
|
wrapper.vm.hasOwnProperty = () => Object.hasOwnProperty
|
||||||
const handleShowBadge = jest.spyOn(wrapper.vm, 'handleShowBadge')
|
const handleShowBadge = jest.spyOn(wrapper.vm, 'handleShowBadge')
|
||||||
await wrapper.setProps({ resource: null })
|
await wrapper.setProps({ resource: null })
|
||||||
|
|
||||||
@ -287,7 +287,7 @@ describe('Components > View > ActionButton.vue', () => {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
wrapper.vm.hasOwnProperty = () => Object.hasOwnProperty;
|
wrapper.vm.hasOwnProperty = () => Object.hasOwnProperty
|
||||||
const handleShowBadge = jest.spyOn(wrapper.vm, 'handleShowBadge')
|
const handleShowBadge = jest.spyOn(wrapper.vm, 'handleShowBadge')
|
||||||
await wrapper.setProps({ resource: { id: null } })
|
await wrapper.setProps({ resource: { id: null } })
|
||||||
|
|
||||||
@ -302,7 +302,7 @@ describe('Components > View > ActionButton.vue', () => {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
wrapper.vm.hasOwnProperty = () => Object.hasOwnProperty;
|
wrapper.vm.hasOwnProperty = () => Object.hasOwnProperty
|
||||||
const handleShowBadge = jest.spyOn(wrapper.vm, 'handleShowBadge')
|
const handleShowBadge = jest.spyOn(wrapper.vm, 'handleShowBadge')
|
||||||
await wrapper.setProps({
|
await wrapper.setProps({
|
||||||
resource: {
|
resource: {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user