chore: Add some tests
Some checks failed
CI / Get Changed Files (pull_request) Successful in 8s
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 30s
CI / oxlint (pull_request) Successful in 25s
CI / eslint (pull_request) Successful in 34s
CI / prettier (pull_request) Successful in 36s
CI / Docker frontend validation (pull_request) Successful in 21s
CI / Docker backend validation (pull_request) Successful in 15s
CI / test-build (pull_request) Successful in 1m7s
CI / Checkstyle Main (pull_request) Successful in 1m13s
CI / Playwright (pull_request) Failing after 29s
CI / Backend Tests (pull_request) Successful in 1m59s

This commit is contained in:
Jan K9f 2025-06-04 11:24:49 +02:00
commit 138625f7f4
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();
});