keycloak-scim/js/apps/account-ui/test/test-realm.setup.ts
Erik Jan de Wit 1049ad8edf
added test for the groups tab of the account-ui (#22371)
* 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
2023-08-18 14:18:28 +02:00

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));