()
| 365 | |
| 366 | describe('Test search', function () { |
| 367 | async function makeSearchable() { |
| 368 | const values = Array(20).fill(0).map((v, i) => 'Value ' + i); |
| 369 | setDeepProp(comboBox, 'config.values', values); |
| 370 | await vueTicks(); |
| 371 | |
| 372 | comboBox.vm.comboboxWrapper.dropdown.options.inDuration = 1; |
| 373 | comboBox.vm.comboboxWrapper.dropdown.options.outDuration = 1; |
| 374 | |
| 375 | return values; |
| 376 | } |
| 377 | |
| 378 | function assertVisible(element, visible) { |
| 379 | const displayStyle = window.getComputedStyle(element).display; |
no test coverage detected