From a53742c5da4396ff4d0ce4948a853400f926d1ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Obermu=CC=88ller?= Date: Thu, 19 Dec 2024 11:09:45 +0100 Subject: [PATCH] fix cypress test --- cypress/e2e/persons.cy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/e2e/persons.cy.ts b/cypress/e2e/persons.cy.ts index ee57d75d066ac..2a7d81510b628 100644 --- a/cypress/e2e/persons.cy.ts +++ b/cypress/e2e/persons.cy.ts @@ -4,7 +4,7 @@ describe('Persons', () => { }) it('All tabs work', () => { - cy.get('h1').should('contain', 'People') + cy.get('h1').should('contain', 'Persons') cy.get('[data-attr=persons-search]').type('marisol').type('{enter}').should('have.value', 'marisol') cy.wait(200) cy.get('[data-row-key]').its('length').should('be.gte', 0)