2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-06-16 09:10:33 +03:00

chore(deps): update vue test utils (#1512)

This commit is contained in:
Jeff Sagal
2021-10-06 09:38:50 -07:00
committed by GitHub
parent bbbac18cf9
commit da0bcb0929
14 changed files with 92 additions and 54 deletions
+6 -2
View File
@@ -11,7 +11,9 @@ describe('Scoped Slots', () => {
}
)
expect(Select.find({ ref: 'selectedOptions' }).text()).toEqual('one')
expect(Select.findComponent({ ref: 'selectedOptions' }).text()).toEqual(
'one'
)
})
describe('Slot: selected-option', () => {
@@ -56,7 +58,9 @@ describe('Scoped Slots', () => {
Select.vm.open = true
await Select.vm.$nextTick()
expect(Select.find({ ref: 'dropdownMenu' }).text()).toEqual('onetwothree')
expect(Select.findComponent({ ref: 'dropdownMenu' }).text()).toEqual(
'onetwothree'
)
})
it('noOptions slot receives the current search text', async () => {