1
0
forked from baron/baron-sso

custom claim 타입보정 UI. 대표테넌트 노출 보정

This commit is contained in:
2026-06-11 11:27:11 +09:00
parent 0bb3ccb850
commit f60b15a17b
37 changed files with 2952 additions and 417 deletions

View File

@@ -279,10 +279,16 @@ test.describe("UserFront login performance budget", () => {
const rootIndex = requestedUrls.findIndex(
(url) => new URL(url).pathname === "/",
);
const signinIndex = requestedUrls.findIndex(
(url) => new URL(url).pathname === "/ko/signin",
);
const bootstrapIndex = requestedUrls.findIndex((url) =>
new URL(url).pathname.endsWith("/flutter_bootstrap.js"),
);
expect(rootIndex).toBeGreaterThanOrEqual(0);
expect(bootstrapIndex).toBe(-1);
expect(signinIndex).toBeGreaterThan(rootIndex);
if (bootstrapIndex >= 0) {
expect(bootstrapIndex).toBeGreaterThan(signinIndex);
}
});
});