zappyzep/revampdashboard/e2e/demo.test.ts
laraproto c2da2a8058
Some checks failed
Code quality checks / build (23) (push) Successful in 34s
Push code / build (push) Failing after 37s
let's see if this works
2024-11-02 16:17:41 +02:00

6 lines
187 B
TypeScript

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