setup playwright

This commit is contained in:
Elio Bischof
2024-10-16 12:23:38 +02:00
parent 4772861262
commit 73a385c653
8 changed files with 636 additions and 31 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();
});