1049ad8edf
* added test for the groups tab of the account-ui * simplified groups realm setup * fixed url * changed login to add realm * set account ui v3 as theme
7 lines
337 B
TypeScript
7 lines
337 B
TypeScript
import RealmRepresentation from "@keycloak/keycloak-admin-client/lib/defs/realmRepresentation";
|
|
import { test as setup } from "@playwright/test";
|
|
|
|
import { importRealm } from "./admin-client";
|
|
import testRealm from "./test-realm.json" assert { type: "json" };
|
|
|
|
setup("import realm", () => importRealm(testRealm as RealmRepresentation));
|