ci: Disable intermittently failing MFA e2e tests (no-changelog) (#7106)

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
This commit is contained in:
Iván Ovejero
2023-09-15 11:33:10 +02:00
committed by GitHub
parent 3c055e4d8d
commit bb215bd12a

View File

@@ -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();