ignore 수정,, e2e오류 수정
CI / test (push) Failing after 5m29s
CI / e2e (push) Has been skipped
CI / pr_and_merge (push) Has been skipped

This commit is contained in:
2025-12-12 19:26:34 +09:00
parent 4840a530b6
commit 26ef92d0a3
3 changed files with 6 additions and 1 deletions
+2
View File
@@ -31,6 +31,7 @@ test("비로그인 사용자가 /editor 에 접근하면 /login 으로 리다이
await page.goto("/editor");
await expect(page).toHaveURL(/\/login/);
await expect(page.getByRole("heading", { name: "Log in" })).toBeVisible();
});
@@ -45,6 +46,7 @@ test("비로그인 사용자가 /preview 에 접근하면 /login 으로 리다
await page.goto("/preview");
await expect(page).toHaveURL(/\/login/);
await expect(page.getByRole("heading", { name: "Log in" })).toBeVisible();
});