This commit is contained in:
Joseph Garrone
2024-12-15 11:38:50 +01:00
parent db0ec954df
commit 8e8a0ccf54
3 changed files with 6 additions and 4 deletions

View File

@ -3,6 +3,7 @@ import type { ParsedRealmJson } from "./ParsedRealmJson";
import { getDefaultConfig } from "./defaultConfig";
import type { BuildContext } from "../../shared/buildContext";
import { objectKeys } from "tsafe/objectKeys";
import { TEST_APP_URL } from "../../shared/constants";
export type BuildContextLike = {
themeNames: BuildContext["themeNames"];
@ -158,8 +159,6 @@ function addOrEditTestUser(params: {
return { username: newUser.username };
}
const TEST_APP_URL = "https://my-theme.keycloakify.dev";
function addOrEditClient(params: {
parsedRealmJson: ParsedRealmJson;
keycloakMajorVersionNumber: number;