feat(v2): complete v2 reimplementation

This commit is contained in:
2026-07-31 13:33:39 +02:00
parent 396219e776
commit bd107d6a30
137 changed files with 20737 additions and 155 deletions
+13
View File
@@ -0,0 +1,13 @@
import { expect, test } from "@playwright/test";
test("renders an accessible authentication fallback at a narrow viewport", async ({ page }) => {
await page.setViewportSize({ width: 375, height: 667 });
await page.emulateMedia({ reducedMotion: "reduce" });
await page.goto("/");
await expect(page.getByRole("main")).toBeVisible();
await expect(page.getByRole("heading", { name: "Sign in" })).toBeVisible();
const username = page.getByLabel("Username");
await expect(username).toBeVisible();
await username.focus();
await expect(username).toBeFocused();
});