1
0
forked from baron/baron-sso

i18n 누락 키 보완 및 biome 포맷 정리

This commit is contained in:
2026-03-16 16:43:25 +09:00
parent 9a4681b2c0
commit fb27fbf3b1
7 changed files with 126 additions and 18 deletions

View File

@@ -93,8 +93,12 @@ test.describe("DevFront role report", () => {
await page
.getByPlaceholder("My Awesome Application")
.fill("Tenant A CRM Updated");
const updatePromise = page.waitForResponse(r => r.url().includes('/api/v1/dev/clients') && r.request().method() === 'PUT');
const updatePromise = page.waitForResponse(
(r) =>
r.url().includes("/api/v1/dev/clients") &&
r.request().method() === "PUT",
);
await page.getByRole("button", { name: /^저장$|^Save$/i }).click();
await updatePromise;
@@ -133,8 +137,12 @@ test.describe("DevFront role report", () => {
await page
.getByPlaceholder(/https:\/\/app\.example\.com\/callback/i)
.fill("https://super-admin.example.com/callback");
const createPromise = page.waitForResponse(r => r.url().includes('/api/v1/dev/clients') && r.request().method() === 'POST');
const createPromise = page.waitForResponse(
(r) =>
r.url().includes("/api/v1/dev/clients") &&
r.request().method() === "POST",
);
await page.getByRole("button", { name: /앱 생성|Create/i }).click();
await createPromise;