Files
voiceon-character-admin/tests/e2e/smoke.spec.ts
2026-07-27 15:04:03 +09:00

9 lines
275 B
TypeScript

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("관리자 로그인");
});