.
CI / test (push) Successful in 5m19s
CI / e2e (push) Failing after 5m38s
CI / pr_and_merge (push) Has been skipped

This commit is contained in:
2025-12-14 22:14:14 +09:00
parent 5d89a2690c
commit 5bb3353fab
3 changed files with 22 additions and 7 deletions
+4 -3
View File
@@ -742,7 +742,7 @@ test("폼 셀렉트/체크박스/라디오 레이아웃/패딩/너비/간격 스
await page.getByRole("link", { name: "Back to editor" }).click();
await expect(page.getByRole("heading", { name: "Page Editor" })).toBeVisible();
await page.getByRole("button", { name: "Menu ▼" }).click();
await page.getByRole("button", { name: /Menu/ }).click();
await page.getByRole("button", { name: "Save / load project" }).click();
const projectSlugModalInput = page.getByLabel("Project address (e.g. my-landing)");
await projectSlugModalInput.fill(slug);
@@ -1026,7 +1026,7 @@ test("섹션 배경/레이아웃 스타일이 프리뷰와 퍼블릭 페이지
await page.getByRole("link", { name: "Back to editor" }).click();
await expect(page.getByRole("heading", { name: "Page Editor" })).toBeVisible();
await page.getByRole("button", { name: "Menu ▼" }).click();
await page.getByRole("button", { name: /Menu/ }).click();
await page.getByRole("button", { name: "Save / load project" }).click();
const projectSlugModalInput = page.getByLabel("Project address (e.g. my-landing)");
await projectSlugModalInput.fill(slug);
@@ -1136,7 +1136,7 @@ test("구분선 스타일이 프리뷰와 퍼블릭 페이지에서 동일해야
await page.getByRole("link", { name: "Back to editor" }).click();
await expect(page.getByRole("heading", { name: "Page Editor" })).toBeVisible();
await page.getByRole("button", { name: "Menu ▼" }).click();
await page.getByRole("button", { name: /Menu/ }).click();
await page.getByRole("button", { name: "Save / load project" }).click();
const projectSlugModalInput = page.getByLabel("Project address (e.g. my-landing)");
await projectSlugModalInput.fill(slug);
@@ -1146,6 +1146,7 @@ test("구분선 스타일이 프리뷰와 퍼블릭 페이지에서 동일해야
await page.goto(`/p/${slug}`);
const publicDivider = page.locator("hr.pb-divider").first();
await expect(publicDivider).toBeAttached();
const publicStyles = await publicDivider.evaluate((el) => {
const s = window.getComputedStyle(el as HTMLElement);
return {