[Vuejs]-How to select b-form-input component using vue test utils library?

1👍

I suggest you should find your input like this:

const d = wrapper.find('input.form-control[type="email"]')

Leave a comment