0👍
This is not the direct solution, more a tip to avoid the problem. In my components, I use v-binde="$props"
to propagate the props to subcomponents. However, this can cause issues with jsdom, like in my case.
I ended up with refactoring all my tests by testing each komponent directly, avoiding the need of nested structure and props propagation (like unit tests are supposed to be).
Source:stackexchange.com