fix: restore permissions export compatibility and add regressions
This commit is contained in:
+5
-4
@@ -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*$/);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user