deprecated propData replaced with props atribute

This commit is contained in:
Elvanos 2023-10-27 21:11:51 +02:00
parent def6fc4ff9
commit 5297953ac0

View file

@ -32,7 +32,7 @@ describe('Component - "FantasiaMascotImage"', () => {
const testString = '300px'
const wrapper = mount(FantasiaMascotImage, {
propsData: {
props: {
width: testString
}
})
@ -50,7 +50,7 @@ describe('Component - "FantasiaMascotImage"', () => {
const testString = '300px'
const wrapper = mount(FantasiaMascotImage, {
propsData: {
props: {
height: testString
}
})
@ -78,7 +78,7 @@ describe('Component - "FantasiaMascotImage"', () => {
const testString = 'flop'
const wrapper = mount(FantasiaMascotImage, {
propsData: {
props: {
fantasiaImage: testString
}
})