()
| 455 | |
| 456 | it('should set the input tabindex based on the selected radio button', () => { |
| 457 | const getTabIndexes = () => { |
| 458 | return radioInputElements.map(element => parseInt(element.getAttribute('tabindex') || '')); |
| 459 | }; |
| 460 | |
| 461 | expect(getTabIndexes()).toEqual([0, 0, 0]); |
| 462 |
no test coverage detected