Add authelia dev deployment (#479)

* Add authelia dev deployment
This commit is contained in:
Jonas Plum
2022-10-03 12:44:30 +02:00
committed by GitHub
parent 8f804305cd
commit c490ef90de
15 changed files with 174 additions and 2216 deletions

View File

@@ -24,5 +24,11 @@ Cypress.Commands.add('login', (options = {}) => {
cy.get("#username").type("bob");
cy.get("#password").type("bob");
cy.get("#kc-login").click();
} else if (Cypress.env('AUTH') === 'authelia') {
cy.contains("Login with OIDC").should('be.visible').click();
cy.get("#username-textfield").should('be.visible').type("bob");
cy.get("#password-textfield").type("bob");
cy.get("#sign-in-button").click();
cy.get("#accept-button").should('be.visible').click();
}
})