Files
zitadel/acceptance/tests/welcome.ts
Elio Bischof 7cde73f879 fmt
2024-10-19 00:27:39 +02:00

7 lines
215 B
TypeScript

import { test } from "@playwright/test";
test("login is accessible", async ({ page }) => {
await page.goto("http://localhost:3000/");
await page.getByRole("heading", { name: "Welcome back!" }).isVisible();
});