From bb215bd12a9462e97ef6469e6706192c0cb2e709 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Ovejero?= Date: Fri, 15 Sep 2023 11:33:10 +0200 Subject: [PATCH] ci: Disable intermittently failing MFA e2e tests (no-changelog) (#7106) MFA e2e tests keep intermittently failing, creating distractions Capture 2023-09-05 at 09 36 45@2x Followup story to fix them: https://linear.app/n8n/issue/N8N-6896 --- cypress/e2e/27-two-factor-authentication.cy.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cypress/e2e/27-two-factor-authentication.cy.ts b/cypress/e2e/27-two-factor-authentication.cy.ts index adbad2b495aad..8d710939efaec 100644 --- a/cypress/e2e/27-two-factor-authentication.cy.ts +++ b/cypress/e2e/27-two-factor-authentication.cy.ts @@ -37,7 +37,7 @@ describe('Two-factor authentication', () => { }); }); - it('Should be able to login with MFA token', () => { + it.skip('Should be able to login with MFA token', () => { const { email, password } = user; signinPage.actions.loginWithEmailAndPassword(email, password); personalSettingsPage.actions.enableMfa(); @@ -47,7 +47,7 @@ describe('Two-factor authentication', () => { mainSidebar.actions.signout(); }); - it('Should be able to login with recovery code', () => { + it.skip('Should be able to login with recovery code', () => { const { email, password } = user; signinPage.actions.loginWithEmailAndPassword(email, password); personalSettingsPage.actions.enableMfa(); @@ -56,7 +56,7 @@ describe('Two-factor authentication', () => { mainSidebar.actions.signout(); }); - it('Should be able to disable MFA in account', () => { + it.skip('Should be able to disable MFA in account', () => { const { email, password } = user; signinPage.actions.loginWithEmailAndPassword(email, password); personalSettingsPage.actions.enableMfa();