Im trying to spy on vue instance method via
cy.mount(MyComponent)
.then(w => {
cy.spy(w.vm, 'myMethod').as('myMethodSpy)
})
But im getting an a TypeError "Cannot read properties of undefined (reading 'value')".
Is there any way to spy on vue method inside my test ?