let's see if this works

This commit is contained in:
Lara 2024-11-02 16:17:41 +02:00
parent 88afb77abf
commit c2da2a8058
Signed by: laratheprotogen
GPG key ID: 5C0296EB3165F98B
5 changed files with 10 additions and 16 deletions
revampdashboard/e2e

View file

@ -1,6 +1,6 @@
import { expect, test } from "@playwright/test";
test("home page has expected h1", async ({ page }) => {
await page.goto("/");
await page.goto("/new");
await expect(page.locator("h1")).toBeVisible();
});