fix: restore permissions export compatibility and add regressions

This commit is contained in:
2026-02-27 14:54:26 -06:00
parent 5a6970a4c5
commit cb8c6b3958
8 changed files with 617 additions and 10 deletions
+5 -4
View File
@@ -1,6 +1,7 @@
import { expect, test } from '@playwright/test';
import { expect, test } from "@playwright/test";
test('home page has expected h1', async ({ page }) => {
await page.goto('/');
await expect(page.locator('h1')).toBeVisible();
test("app root renders visible content", async ({ page }) => {
await page.goto("/");
await expect(page.locator("body")).toBeVisible();
await expect(page.locator("body")).not.toHaveText(/^\s*$/);
});