From 77df813f1602c00f39c0a28138b85df32b7e5b19 Mon Sep 17 00:00:00 2001 From: Claude Fable 5 Date: Tue, 28 Jul 2026 21:58:43 +0200 Subject: [PATCH] =?UTF-8?q?#180:=20settings=20jump-nav=20fence=20=E2=80=94?= =?UTF-8?q?=20nine=20sections=20since=20the=20Appearance=20section?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CI run 453 caught it: settings-nav.spec.ts pins the user-settings section count, which #180's Appearance section raised from 8 to 9. Verified locally against a fresh e2e environment (both pack tests green). Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01QRtCnB3uLdQtFmvp9HXcRX --- apps/web/e2e/settings-nav.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/e2e/settings-nav.spec.ts b/apps/web/e2e/settings-nav.spec.ts index aebfdaf..2c908e9 100644 --- a/apps/web/e2e/settings-nav.spec.ts +++ b/apps/web/e2e/settings-nav.spec.ts @@ -28,8 +28,8 @@ test('user settings show the jump nav and clicking scrolls + activates', async ( await expect(nav).toBeVisible(); const links = nav.locator('.settings-nav__link'); // Profile, password, sessions, watches, API tokens, feed tokens, data export. - // 8 seit #170 (neue Bedienungs-Sektion). - await expect(links).toHaveCount(8); + // 8 seit #170 (Bedienung), 9 seit #180 (Erscheinungsbild). + await expect(links).toHaveCount(9); // Jump to the last section: it scrolls into view and becomes active. const last = links.last();