mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 08:32:39 +00:00
8 lines
221 B
TypeScript
8 lines
221 B
TypeScript
|
|
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();
|
||
|
|
});
|