From 5297953ac0e71f1907c478ecf32251336b82bcc0 Mon Sep 17 00:00:00 2001 From: Elvanos Date: Fri, 27 Oct 2023 21:11:51 +0200 Subject: [PATCH] deprecated propData replaced with props atribute --- .../FantasiaMascotImage/FantasiaMascotImage.vitest.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/FantasiaMascotImage/FantasiaMascotImage.vitest.test.ts b/src/components/FantasiaMascotImage/FantasiaMascotImage.vitest.test.ts index 614d52f..962e20e 100644 --- a/src/components/FantasiaMascotImage/FantasiaMascotImage.vitest.test.ts +++ b/src/components/FantasiaMascotImage/FantasiaMascotImage.vitest.test.ts @@ -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 } })