From 089a1d063af03802be3d09bb216280e22e759757 Mon Sep 17 00:00:00 2001 From: Marcel Date: Mon, 20 Apr 2026 17:08:33 +0200 Subject: [PATCH] test(a11y): add /chronik to AUTHENTICATED_PAGES for axe-playwright sweep MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Three free axe checks light up (light / system-dark / manual-dark) without further code changes — they run the existing parameterized spec against /chronik. Part of #285. Co-Authored-By: Claude Opus 4.7 (1M context) --- frontend/e2e/accessibility.spec.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/e2e/accessibility.spec.ts b/frontend/e2e/accessibility.spec.ts index c5b23944..5722390d 100644 --- a/frontend/e2e/accessibility.spec.ts +++ b/frontend/e2e/accessibility.spec.ts @@ -10,6 +10,7 @@ import { test, expect } from '@playwright/test'; const AUTHENTICATED_PAGES = [ { name: 'home', path: '/' }, { name: 'persons', path: '/persons' }, + { name: 'chronik', path: '/chronik' }, { name: 'admin', path: '/admin' } ];