From 8e8f2bcad5dc8b9176cb1c461aa4c64b187f4d96 Mon Sep 17 00:00:00 2001 From: Yue JIN Date: Mon, 12 Aug 2024 09:14:09 +0800 Subject: [PATCH] chore: suppress cypress eslint warning --- cypress/e2e/example.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cypress/e2e/example.spec.ts b/cypress/e2e/example.spec.ts index 47c0272..02e9f8b 100644 --- a/cypress/e2e/example.spec.ts +++ b/cypress/e2e/example.spec.ts @@ -17,7 +17,7 @@ describe('Example Test', () => { cy.get('#' + id) }) .type('your-password{Enter}') - .url() - .should('eq', 'http://localhost:5050/homepage') + + cy.url().should('eq', 'http://localhost:5050/homepage') }) })