From f0a2ca7e8eff5e8f4d80f884beb74918c27a4896 Mon Sep 17 00:00:00 2001 From: Rainer Killinger Date: Thu, 14 Apr 2022 09:47:39 +0200 Subject: [PATCH] test: fix failing e2e navigation test --- cypress/integration/app.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/integration/app.spec.ts b/cypress/integration/app.spec.ts index 1a282dd1..cb92312c 100644 --- a/cypress/integration/app.spec.ts +++ b/cypress/integration/app.spec.ts @@ -22,7 +22,7 @@ describe('App', () => { it('should have a proper working navigation', () => { cy.visit('/'); - cy.contains('Settings').click(); + cy.contains('Einstellungen').click(); cy.get('ion-title').contains('Einstellungen'); }); });