Files
zitadel/acceptance/tests/welcome.ts

7 lines
215 B
TypeScript
Raw Normal View History

2024-10-19 00:27:39 +02:00
import { test } from "@playwright/test";
2024-10-16 12:23:38 +02:00
2024-10-19 00:27:39 +02:00
test("login is accessible", async ({ page }) => {
await page.goto("http://localhost:3000/");
await page.getByRole("heading", { name: "Welcome back!" }).isVisible();
2024-10-16 12:23:38 +02:00
});