chore: Add some tests
All checks were successful
CI / Get Changed Files (pull_request) Successful in 9s
Pull Request Labeler / labeler (pull_request_target) Successful in 6s
Label PRs based on size / Check PR size (pull_request) Successful in 11s
Claude PR Review / claude-code (pull_request) Successful in 24s
CI / oxlint (pull_request) Successful in 29s
CI / eslint (pull_request) Successful in 38s
CI / prettier (pull_request) Successful in 39s
CI / Docker frontend validation (pull_request) Successful in 27s
CI / Docker backend validation (pull_request) Successful in 14s
CI / test-build (pull_request) Successful in 1m10s
CI / Checkstyle Main (pull_request) Successful in 1m12s
CI / Backend Tests (pull_request) Successful in 2m17s
CI / Playwright (pull_request) Successful in 2m7s

This commit is contained in:
Jan K9f 2025-06-04 11:24:49 +02:00
commit ae22692f80
13 changed files with 197 additions and 15 deletions

View file

@ -0,0 +1,8 @@
import { test, expect } from '@playwright/test';
test('backend works', async ({ page }) => {
await page.goto('http://localhost:8080/health');
const response = await page.textContent('body');
expect(response).toBeTruthy();
expect(page.getByText('{"status":"UP"}')).toBeVisible();
});