cypress-documentation
cypress-documentation copied to clipboard
Error with Vue2 and mount/props in component testing
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