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 4s
Label PRs based on size / Check PR size (pull_request) Successful in 11s
Claude PR Review / claude-code (pull_request) Successful in 26s
CI / oxlint (pull_request) Successful in 29s
CI / eslint (pull_request) Successful in 43s
CI / Docker backend validation (pull_request) Successful in 30s
CI / prettier (pull_request) Successful in 46s
CI / test-build (pull_request) Successful in 1m24s
CI / Docker frontend validation (pull_request) Successful in 1m24s
CI / Checkstyle Main (pull_request) Successful in 1m28s
CI / Backend Tests (pull_request) Successful in 2m30s
CI / Playwright (pull_request) Failing after 11m2s

This commit is contained in:
Jan K9f 2025-06-04 11:24:49 +02:00
commit 7f1faa39be
8 changed files with 132 additions and 4 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();
});