fiddy/apps/web/e2e/smoke.spec.ts
2026-02-11 23:45:15 -08:00

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/);
});