From abecf37a65dc6ff40bbb34f8e07477430e696378 Mon Sep 17 00:00:00 2001 From: bsilkyn Date: Wed, 22 May 2024 13:28:43 +0200 Subject: [PATCH] style: lint fix #407 --- frontend/src/test/e2e/login.cy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/test/e2e/login.cy.ts b/frontend/src/test/e2e/login.cy.ts index 366aa915..970d6e8e 100644 --- a/frontend/src/test/e2e/login.cy.ts +++ b/frontend/src/test/e2e/login.cy.ts @@ -23,7 +23,7 @@ describe('login', () => { // logout cy.get('#logout').click(); // try to go to dashboard - cy.visit('/') + cy.visit('/'); // should be on login page now cy.url().should('match', /^.*\/auth\/login$/); });