cypress-documentation icon indicating copy to clipboard operation
cypress-documentation copied to clipboard

Error with Vue2 and mount/props in component testing

Open EtiennePASSOT opened this issue 2 years ago • 0 comments

I tried to use mount() with Vue 2 and props options but not working.

mount(Stepper, { props: { initial: 100 } })

The correct example is

mount(Stepper, { propsData: { initial: 100 }}

https://docs.cypress.io/guides/component-testing/testing-vue

PS: I haven't try with vue 3

EtiennePASSOT avatar Aug 12 '22 09:08 EtiennePASSOT