Skip to content

Commit

Permalink
ci: Disable intermittently failing MFA e2e tests (no-changelog) (#7106)
Browse files Browse the repository at this point in the history
MFA e2e tests keep intermittently failing, creating distractions

<img width="917" alt="Capture 2023-09-05 at 09 36 45@2x"
src="https://github.com/n8n-io/n8n/assets/44588767/baed58bf-7871-4c84-a9c1-60109f13bb93">

Followup story to fix them: https://linear.app/n8n/issue/N8N-6896
  • Loading branch information
ivov authored Sep 15, 2023
1 parent 3c055e4 commit bb215bd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cypress/e2e/27-two-factor-authentication.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand All @@ -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();
Expand All @@ -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();
Expand Down

0 comments on commit bb215bd

Please sign in to comment.