You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm migrating vue2 to vue3 (test utils too)
In vue2 if I had global plugin that was installed with createLocalVue then it was accessible under wrapper.vm (e.g wrapper.vm.$logger), in vue3 if i pass plugin to global.plugins then it is passed correctly to tested component, but in the test itself I don't have access to it so e.g I can't mock it
It works though for external provider plugins like vuetify (wrapper.vm.$vuetify is there)