2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-06-10 07:52:23 +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
+2 -2
View File
@@ -39,7 +39,7 @@ describe('Selectable prop', () => {
Select.vm.typeAheadPointer = 1
Select.find({ ref: 'search' }).trigger('keydown.down')
Select.findComponent({ ref: 'search' }).trigger('keydown.down')
expect(Select.vm.typeAheadPointer).toEqual(2)
})
@@ -52,7 +52,7 @@ describe('Selectable prop', () => {
Select.vm.typeAheadPointer = 2
Select.find({ ref: 'search' }).trigger('keydown.up')
Select.findComponent({ ref: 'search' }).trigger('keydown.up')
expect(Select.vm.typeAheadPointer).toEqual(0)
})