This commit is contained in:
Elio Bischof
2024-10-16 15:21:26 +02:00
parent 2fa16d5f8f
commit 653b499668
3 changed files with 8 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
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();
});