(inputs: Partial<TestInputs<string>> = {})
| 59 | } |
| 60 | |
| 61 | function getDefaultPatterns(inputs: Partial<TestInputs<string>> = {}) { |
| 62 | return getListAndItems( |
| 63 | [ |
| 64 | 'Apple', |
| 65 | 'Apricot', |
| 66 | 'Banana', |
| 67 | 'Blackberry', |
| 68 | 'Blueberry', |
| 69 | 'Cantaloupe', |
| 70 | 'Cherry', |
| 71 | 'Clementine', |
| 72 | 'Cranberry', |
| 73 | ], |
| 74 | inputs, |
| 75 | ); |
| 76 | } |
| 77 | |
| 78 | describe('with focusMode: "activedescendant"', () => { |
| 79 | it('should set the list tab index to 0', () => { |
no test coverage detected
searching dependent graphs…