7 lines
200 B
TypeScript
7 lines
200 B
TypeScript
import { test, expect } from "@playwright/test";
|
|
|
|
test("home redirects to login when unauthenticated", async ({ page }) => {
|
|
await page.goto("/");
|
|
await expect(page).toHaveURL(/\/login/);
|
|
});
|