I am writing you because I really need help. My Team and I are totally stucked when it comes to testing, because we have trouble get Vueform to render inside our Tests.
What am I expecting? When running the tests with vitest I am using mountSuspended to mount a component that has a Vueform inside. When I make a console log on the mounted components html(), I expect to get the same HTML DOM like in the browser with all the labels and input fields so i can find() and setValue() etc.
What am I getting? The console log shows me the vue component names instead. Components names like "<vueform><text-element /></vueform>". Therefore I cannot test the form.
I also get some errors that the Components could not be resolved.
[Vue warn]: Failed to resolve component: TextElementIf this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement. at <MountSuspendedComponent > at <MountSuspendedHelper> at <Anonymous ref="VTU_COMPONENT" > at <VTUROOT>
[Vue warn]: Failed to resolve component: TextElementIf this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement. at <MountSuspendedComponent > at <MountSuspendedHelper> at <Anonymous ref="VTU_COMPONENT" > at <VTUROOT>
I tried so many things the last couple of days that I ran out of ideas. I am sitting here on my weekend because I cannot stop debugging We need to get this to work. The alternative is to create a different solution for our forms, maybe with vee-validate? But that would be the last solution We are already so deep into our project that it would take a couple of sprints to iron that out.