mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
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:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user