Files
zitadel/acceptance/tests/welcome.ts

8 lines
221 B
TypeScript
Raw Normal View History

2024-10-16 12:23:38 +02:00
import { test, expect } from '@playwright/test';
test('get started link', async ({ page }) => {
await page.goto('http://localhost:8080/');
await page.getByRole('heading', { name: 'Welcome back!' }).isVisible();
});