import { expect, test } from "@playwright/test"; test("opens the root shell", async ({ page }) => { await page.goto("/"); await expect(page.locator("html")).toHaveAttribute("lang", "ko"); await expect(page.getByRole("main")).toContainText("AI 캐릭터 관리자"); });