398ca19ec1
* Allow app to run as a WAR on Keycloak server. * New client creation json that works for both dev and prod * fixed tests * Try Mark's trick to get realm_test to run. * Make tests use keycloakBefore() * Fix duplicate import * fix github actions Co-authored-by: Erik Jan de Wit <erikjan.dewit@gmail.com>
15 lines
454 B
TypeScript
15 lines
454 B
TypeScript
export const keycloakBefore = () => {
|
|
/*
|
|
Prevent unpredictable 401 errors from failing individual tests.
|
|
These are most often occurring during the login process:
|
|
GET /admin/serverinfo/
|
|
GET /admin/master/console/whoami
|
|
*/
|
|
cy.on("uncaught:exception", (err, runnable) => {
|
|
console.log("-------------------");
|
|
console.log(err);
|
|
console.log("--------------------");
|
|
return false;
|
|
});
|
|
cy.visit("");
|
|
};
|