mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 03:23:40 +00:00
7 lines
215 B
TypeScript
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();
|
|
});
|