From b544a7a462307db79f892c9c48b5562e97c164b9 Mon Sep 17 00:00:00 2001 From: Michael Chihlas Date: Wed, 6 May 2026 18:54:53 -0400 Subject: [PATCH] test(e2e): update account page heading assertion to match redesign MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 8612042 dropped the static "Account Management" heading in favor of the account name (rendered as a dynamic h1). Switch the smoke test to the "Settings" SectionLabel — a stable h2 that survives the redesign. Co-Authored-By: Claude Opus 4.7 --- frontend/e2e/navigation.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/e2e/navigation.spec.ts b/frontend/e2e/navigation.spec.ts index c2858ee8..a68f177d 100644 --- a/frontend/e2e/navigation.spec.ts +++ b/frontend/e2e/navigation.spec.ts @@ -30,7 +30,7 @@ test.describe('authenticated navigation smoke tests', () => { await page.goto('/account') await expect( - page.getByRole('heading', { name: 'Account Management' }), + page.getByRole('heading', { name: 'Settings' }), ).toBeVisible() }) })