.
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user