forked from baron/baron-sso
custom claim 타입보정 UI. 대표테넌트 노출 보정
This commit is contained in:
@@ -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);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user