chore: Add some tests
All checks were successful
CI / Get Changed Files (pull_request) Successful in 8s
Pull Request Labeler / labeler (pull_request_target) Successful in 5s
Label PRs based on size / Check PR size (pull_request) Successful in 12s
Claude PR Review / claude-code (pull_request) Successful in 24s
CI / oxlint (pull_request) Successful in 31s
CI / Docker frontend validation (pull_request) Successful in 31s
CI / eslint (pull_request) Successful in 40s
CI / Docker backend validation (pull_request) Successful in 24s
CI / prettier (pull_request) Successful in 42s
CI / test-build (pull_request) Successful in 1m13s
CI / Checkstyle Main (pull_request) Successful in 1m23s
CI / Backend Tests (pull_request) Successful in 2m7s
CI / Playwright (pull_request) Successful in 2m7s

This commit is contained in:
Jan K9f 2025-06-04 11:24:49 +02:00
commit ef610ab30d
6 changed files with 98 additions and 2 deletions

View file

@ -0,0 +1,9 @@
import { test, expect } from '@playwright/test';
test('home page loads correctly', async ({ page }) => {
await page.goto('/');
await expect(page).toHaveTitle(/Casino/);
await expect(page.getByRole('heading', { name: 'Willkommensbonus' })).toBeVisible();
await expect(page.getByText('von bis zu €')).toBeVisible();
});