From 8a4b304696ab6f578ef947fb0fff6b27fbcaa5c8 Mon Sep 17 00:00:00 2001 From: turtle601 Date: Fri, 20 Oct 2023 15:01:08 +0900 Subject: [PATCH] =?UTF-8?q?hotfix:=20cypress=20=EC=98=A4=EB=A5=98=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/cypress/support/commands.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/frontend/cypress/support/commands.ts b/frontend/cypress/support/commands.ts index 919513a2b..57379ec16 100644 --- a/frontend/cypress/support/commands.ts +++ b/frontend/cypress/support/commands.ts @@ -43,3 +43,8 @@ Cypress.Commands.add('loginGoogleForMobile', () => { cy.loginGoogle(); }); + +Cypress.on('uncaught:exception', (err, runnable) => { + // returning false here prevents Cypress from failing the test + return false; +});