Files
zitadel/acceptance/tests/welcome.ts

7 lines
215 B
TypeScript
Raw Normal View History

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