Fix build

This commit is contained in:
garronej
2023-04-19 05:32:19 +02:00
parent ffa65e871e
commit 1112da33e3
4 changed files with 9 additions and 21 deletions

View File

@ -53,8 +53,7 @@ describe("Sample Project", () => {
const destDirPath = pathJoin(
readBuildOptions({
"isExternalAssetsCliParamProvided": false,
"isSilent": true,
"processArgv": ["--silent"],
"projectDirPath": process.cwd()
}).keycloakifyBuildDirPath,
"src",
@ -62,7 +61,7 @@ describe("Sample Project", () => {
"resources",
"theme"
);
await downloadBuiltinKeycloakTheme({ destDirPath, keycloakVersion: "11.0.3", isSilent: false });
await downloadBuiltinKeycloakTheme({ destDirPath, keycloakVersion: "11.0.3", "isSilent": false });
},
{ timeout: 90000 }
);
@ -80,8 +79,7 @@ describe("Sample Project", () => {
const destDirPath = pathJoin(
readBuildOptions({
"isExternalAssetsCliParamProvided": false,
"isSilent": true,
"processArgv": ["--silent"],
"projectDirPath": process.cwd()
}).keycloakifyBuildDirPath,
"src",
@ -89,7 +87,7 @@ describe("Sample Project", () => {
"resources",
"theme"
);
await downloadBuiltinKeycloakTheme({ destDirPath, keycloakVersion: "11.0.3", isSilent: false });
await downloadBuiltinKeycloakTheme({ destDirPath, "keycloakVersion": "11.0.3", "isSilent": false });
},
{ timeout: 90000 }
);