From 0228e014c0e2bae58cfd5608d9bbcab1f9b176d8 Mon Sep 17 00:00:00 2001 From: Alejandro Lembke Barrientos Date: Thu, 12 Oct 2023 00:21:35 +0000 Subject: [PATCH] PR-722301: fixing List cypress test typo. --- src/components/List/__tests__/List.test.cy.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/List/__tests__/List.test.cy.tsx b/src/components/List/__tests__/List.test.cy.tsx index 7aa56b1..ec92e44 100644 --- a/src/components/List/__tests__/List.test.cy.tsx +++ b/src/components/List/__tests__/List.test.cy.tsx @@ -21,6 +21,6 @@ describe('Testing List Component', () => { />); }) it('Show All Items in a list', () => { - cy.get('[role="textbox"]').should('have.length', 3); + cy.get('[role="checkbox"]').should('have.length', 3); }) })