From 97e72c3f1c99960eebeb49486067e3421c0199bf Mon Sep 17 00:00:00 2001 From: ZdenekSrotyr Date: Sun, 3 May 2026 19:35:59 +0200 Subject: [PATCH] test(web-ui): update dashboard CTA link assertion after copy edit --- tests/test_web_ui.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_web_ui.py b/tests/test_web_ui.py index 778a55e..e4b2d2d 100644 --- a/tests/test_web_ui.py +++ b/tests/test_web_ui.py @@ -240,7 +240,8 @@ class TestClaudeSetupPreview: assert resp.status_code == 200 body = resp.text assert "env-setup-cta" in body - assert "View what Claude Code will receive on /setup" in body + assert "Open the full setup page" in body + assert 'href="/setup"' in body # inline
preview block must no longer appear assert 'aria-label="Preview of the clipboard payload"' not in body