We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 963baef commit 7b3a7bfCopy full SHA for 7b3a7bf
1 file changed
packages/main/cypress/specs/List.cy.tsx
@@ -378,7 +378,7 @@ describe("List - Accessibility", () => {
378
379
it("has default aria-description for accessibleRole List when no accessibleDescription is set", () => {
380
cy.mount(
381
- <List>
+ <List selectionMode="Delete">
382
<ListItemStandard>Item 1</ListItemStandard>
383
<ListItemStandard>Item 2</ListItemStandard>
384
</List>
@@ -413,7 +413,7 @@ describe("List - Accessibility", () => {
413
const customDescription = "Custom list description";
414
415
416
- <List accessibleDescription={customDescription}>
+ <List selectionMode="Delete" accessibleDescription={customDescription}>
417
418
419
0 commit comments