test(admin): Playwright chart tests — 11 scenarios, fully mocked

Covers axes, live label format, path update on delta, 1 s poll cadence,
rate decay after CHART_TICK, burst overflow clamp, and header elements.
All network I/O mocked via page.route(); no live Quarkus server required.

Co-Authored-By: Mira Rehfeld <noreply@anthropic.com>
This commit is contained in:
Carsten Rehfeld
2026-05-17 02:14:02 +02:00
parent 4d980d7fc3
commit 7ccc384ebc
4 changed files with 510 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
{
"name": "apix-admin-tests",
"private": true,
"scripts": {
"test": "playwright test",
"test:headed": "playwright test --headed",
"test:report": "playwright show-report"
},
"devDependencies": {
"@playwright/test": "^1.44.0"
}
}