Closed
Description
Describe the bug
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)
To Reproduce
In test file see console.log
Expected behavior
Global plugin is accessible e.g wrapper.vm.$logger