I\'ve been working with vuejs and bootstrap-vue lately. Decided to add unit testing to my project.
I\'m not realy familiar with unit testing so I\'m trying anything I cou
It is also possible to stub components like
const wrapper = mount(Login, { mocks: { $t: () => 'Connexion' // i18N }, stubs: { BCol: true } });