Skip to content

Commit 260e1e8

Browse files
authored
chore: remove outdated code comments (#665)
1 parent a2a3212 commit 260e1e8

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/__tests__/element-queries.js

-4
Original file line numberDiff line numberDiff line change
@@ -531,15 +531,11 @@ test('queryAllByRole returns semantic html elements', () => {
531531
expect(queryAllByRole(/heading/i)).toHaveLength(6)
532532
expect(queryAllByRole('list')).toHaveLength(2)
533533
expect(queryAllByRole(/listitem/i)).toHaveLength(3)
534-
// TODO: with https://github.com/A11yance/aria-query/pull/42
535-
// the actual value will match `toHaveLength(2)`
536534
expect(queryAllByRole(/textbox/i)).toHaveLength(2)
537535
expect(queryAllByRole(/checkbox/i)).toHaveLength(1)
538536
expect(queryAllByRole(/radio/i)).toHaveLength(1)
539537
expect(queryAllByRole('row')).toHaveLength(3)
540538
expect(queryAllByRole(/rowgroup/i)).toHaveLength(2)
541-
// TODO: with https://github.com/A11yance/aria-query/pull/42
542-
// the actual value will match `toHaveLength(3)`
543539
expect(queryAllByRole(/(table)|(textbox)/i)).toHaveLength(3)
544540
expect(queryAllByRole(/img/i)).toHaveLength(1)
545541
expect(queryAllByRole('meter')).toHaveLength(1)

0 commit comments

Comments
 (0)