(count: number)
| 41 | |
| 42 | describe('list behavior logic', () => { |
| 43 | const createTestItems = (count: number): SelectableListItem[] => |
| 44 | Array.from({ length: count }, (_, i) => ({ |
| 45 | id: `item-${i}`, |
| 46 | label: `Item ${i}`, |
| 47 | })) |
| 48 | |
| 49 | describe('highlighting logic', () => { |
| 50 | it('should identify focused item correctly', () => { |
no test coverage detected