()
| 797 | |
| 798 | describe(`typeahead functionality (focusMode="${focusMode}")`, () => { |
| 799 | const getOptions = () => [ |
| 800 | {value: 0, label: 'Apple', disabled: false}, |
| 801 | {value: 1, label: 'Apricot', disabled: false}, |
| 802 | {value: 2, label: 'Banana', disabled: false}, |
| 803 | {value: 3, label: 'Blueberry', disabled: false}, |
| 804 | {value: 4, label: 'Orange', disabled: false}, |
| 805 | ]; |
| 806 | |
| 807 | it('should focus the first matching option when typing characters', async () => { |
| 808 | await setupListbox({options: getOptions(), focusMode}); |
no outgoing calls
no test coverage detected
searching dependent graphs…