Compare commits

..

1 commit

Author SHA1 Message Date
218bc611db 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 9s
Label PRs based on size / Check PR size (pull_request) Successful in 12s
Claude PR Review / claude-code (pull_request) Successful in 29s
CI / oxlint (pull_request) Successful in 35s
CI / Docker frontend validation (pull_request) Successful in 34s
CI / eslint (pull_request) Successful in 46s
CI / Docker backend validation (pull_request) Successful in 28s
CI / prettier (pull_request) Successful in 48s
CI / test-build (pull_request) Successful in 1m16s
CI / Checkstyle Main (pull_request) Successful in 1m27s
CI / Backend Tests (pull_request) Successful in 2m18s
CI / Playwright (pull_request) Successful in 6m23s
2025-06-04 14:12:51 +02:00

View file

@ -1,8 +0,0 @@
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();
});