chore(e2e): Skip asking for new password on Admin in dev environment (#4599)

* feat(e2e): Skip asking for new password on Admin

* remove password changing

Co-authored-by: Elio Bischof <eliobischof@gmail.com>
This commit is contained in:
p_0g_8mm3_ 2022-10-23 13:26:34 +00:00 committed by GitHub
parent afa1e2b7c1
commit 4e36ded63b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 6 deletions

View File

@ -76,11 +76,6 @@ export function login(
}
cy.contains('button', 'skip').click();
cy.get('#change-old-password').type(creds.password);
cy.get('#change-new-password').type(creds.password);
cy.get('#change-password-confirmation').type(creds.password);
cy.contains('button', 'next').click();
cy.contains('button', 'next').click();
});
cy.wait('@token').then(() => {

View File

@ -8,7 +8,7 @@ services:
environment:
ZITADEL_EXTERNALSECURE: false
ZITADEL_DATABASE_COCKROACH_HOST: db
ZITADEL_FIRSTINSTANCE_ORG_HUMAN_PASSWORDCHANGEREQUIRED: false
depends_on:
db:
condition: 'service_healthy'