Skip to content

Commit 0bad768

Browse files
committed
Remove test for aria 1.1
1 parent 0427531 commit 0bad768

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

src/__tests__/ariaAttributes.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,6 @@ test('`selected: true` matches `aria-selected="true"` on supported roles', () =>
2525
<div role="treeitem" aria-selected="false" id="unselected-treeitem" />
2626
<div role="treeitem" id="not-selectable-treeitem" />
2727
</div>
28-
<input type="radio" aria-selected="true" id="selected-native-radio" />
29-
<input type="radio" aria-selected="false" id="unselected-native-radio" />
30-
<div role="radio" aria-selected="true" id="selected-radio" />
31-
<div role="radio" aria-selected="false" id="unselected-radio" />
3228
<table>
3329
<thead>
3430
<tr>
@@ -75,11 +71,6 @@ test('`selected: true` matches `aria-selected="true"` on supported roles', () =>
7571
'selected-listbox-option',
7672
])
7773

78-
expect(getAllByRole('radio', {selected: true}).map(({id}) => id)).toEqual([
79-
'selected-native-radio',
80-
'selected-radio',
81-
])
82-
8374
expect(
8475
getAllByRole('rowheader', {selected: true}).map(({id}) => id),
8576
).toEqual(['selected-rowheader', 'selected-native-rowheader'])

0 commit comments

Comments
 (0)