Hi all,
I have a simple watch into my component
watch(
() => props.checked,
() => _checked.value = props.checked,
)
but when I set the props during the cy test (after mount) this watch callback is never called
wrapper.setProps({checked: true});
If someone has an idea
Thanks 🙂