2 Commits
Author SHA1 Message Date
jiang abef9ffabf fix: bypass blocked Keycloak session iframe
Generic Container CI/CD / test-build-publish (push) Successful in 1m1s
Frontend CI/CD / build-test-publish-and-deploy (push) Successful in 1m31s
2026-08-19 18:12:21 +08:00
jiang db696eb4f1 test: align collapsed agent camera padding
Generic Container CI/CD / test-build-publish (push) Successful in 2m9s
Frontend CI/CD / build-test-publish-and-deploy (push) Successful in 2m40s
2026-08-19 18:00:40 +08:00
3 changed files with 6 additions and 4 deletions
+2 -2
View File
@@ -18,7 +18,7 @@ describe("workbench camera padding", () => {
{
agentOpen: false,
conditionOpen: false,
expected: { top: 72, right: 72, bottom: 32, left: 96 }
expected: { top: 72, right: 72, bottom: 32, left: 24 }
},
{
agentOpen: true,
@@ -28,7 +28,7 @@ describe("workbench camera padding", () => {
{
agentOpen: false,
conditionOpen: true,
expected: { top: 72, right: 504, bottom: 32, left: 96 }
expected: { top: 72, right: 504, bottom: 32, left: 24 }
},
{
agentOpen: true,
+2 -1
View File
@@ -40,7 +40,8 @@ describe("Keycloak authentication", () => {
expect(client.init).toHaveBeenCalledWith({
onLoad: "login-required",
flow: "standard",
pkceMethod: "S256"
pkceMethod: "S256",
checkLoginIframe: false
});
expect(authentication.user).toEqual({
name: "张调度",
+2 -1
View File
@@ -59,7 +59,8 @@ export async function initializeAuthentication(
const authenticated = await keycloak.init({
onLoad: "login-required",
flow: "standard",
pkceMethod: "S256"
pkceMethod: "S256",
checkLoginIframe: false
});
if (!authenticated) {