import { expect, test } from "@playwright/test"; test("redirects unauthenticated users to login", async ({ page }) => { await page.goto("/"); await expect(page).toHaveURL(/\/login$/); await expect(page.getByRole("heading", { name: "Login" })).toBeVisible(); await expect(page.getByPlaceholder("Username")).toBeVisible(); await expect(page.getByPlaceholder("Password")).toBeVisible(); });