From dac1d352399ef731b1bbea0424e5980e5e889dcb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=B1=CE=B7dr3=CE=B15=20=C9=AE=CE=B1=CE=B7=C9=A6=D6=85l?= =?UTF-8?q?=CA=903=CA=80?= <2878033+a6b8@users.noreply.github.com> Date: Mon, 22 Jun 2026 17:35:17 +0200 Subject: [PATCH] Fix about smoke marker after title rename --- tests/playwright/phase-9-routes.mjs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/playwright/phase-9-routes.mjs b/tests/playwright/phase-9-routes.mjs index 9b03539..54f8320 100644 --- a/tests/playwright/phase-9-routes.mjs +++ b/tests/playwright/phase-9-routes.mjs @@ -30,7 +30,9 @@ // .trash). Those routes now live in FORBIDDEN_ROUTES (Block 2: 404/redirect = PASS). const EN_ROUTES = [ // Get-Started-Gruppe (Memo 144 T9: About FlowMCP merged into Get Started; standalone About group removed) - { path: '/about/', expectedMarker: 'About FlowMCP', group: 'Get Started', locale: 'en' }, + // Marker is a body phrase, not the title: the title was shortened to "About", + // which now also appears in the global sidebar nav and would false-pass anywhere. + { path: '/about/', expectedMarker: 'FlowMCP started as', group: 'Get Started', locale: 'en' }, // Memo 144 T8: sidebar label "CLI Setup" (Memo 060) now matches the page H1 "CLI Setup". { path: '/quickstart/quickstart/', expectedMarker: 'CLI Setup', group: 'Get Started', locale: 'en' },