change selected option of v-select using vue-test-util
Use wrapper.vm.selectItem('foo')
. It works for me.
I found this in vuetify v-select
tests:
Old: ~~https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/test/unit/components/VSelect/VSelect.spec.js#L533~~
New: https://github.com/vuetifyjs/vuetify/blob/b2abe9fa274feeb0c5033bf12cc48276d4ac5a78/packages/vuetify/test/unit/components/VSelect/VSelect.spec.js#L28
Edit: Updated link.
wrapper.findAll('.v-list__tile__title').at(0).trigger('click')
It works for me. By this code, first option is selected.
Here is ref.
I used Vuetify v1.5.5.