(inputs: Partial<TestInputs> = {})
| 74 | } |
| 75 | |
| 76 | function getDefaultPatterns(inputs: Partial<TestInputs> = {}) { |
| 77 | return getPatterns( |
| 78 | [ |
| 79 | 'Apple', |
| 80 | 'Apricot', |
| 81 | 'Banana', |
| 82 | 'Blackberry', |
| 83 | 'Blueberry', |
| 84 | 'Cantaloupe', |
| 85 | 'Cherry', |
| 86 | 'Clementine', |
| 87 | 'Cranberry', |
| 88 | ], |
| 89 | inputs, |
| 90 | ); |
| 91 | } |
| 92 | |
| 93 | describe('Tabindex', () => { |
| 94 | it('should expose tabIndex signals on listbox and options', () => { |
no test coverage detected