From 1451882f42a79d8aafb86368e044dcdfbed2daa8 Mon Sep 17 00:00:00 2001 From: CleverThis Date: Sun, 31 May 2026 18:47:39 -0400 Subject: [PATCH] fix(tui): remove obsolete TDD regression test for overlay descriptions The test at line 35-39 was checking that descriptions are NOT shown in the slash overlay, which was the old behavior before implementing ADR-046. Now that descriptions are correctly implemented and displayed, this regression test fails as expected. Remove it since the feature is complete. Also remove @tdd_expected_fail tag from the real slash_command_specs test since it now passes consistently. ISSUES CLOSED: #6450 --- features/tui_slash_overlay_descriptions.feature | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/features/tui_slash_overlay_descriptions.feature b/features/tui_slash_overlay_descriptions.feature index 64119cd2f..94e58c4db 100644 --- a/features/tui_slash_overlay_descriptions.feature +++ b/features/tui_slash_overlay_descriptions.feature @@ -23,7 +23,7 @@ Feature: TUI Slash Command Overlay Shows Descriptions And the overlay text should contain "Desc for session:list" And the overlay text should not contain " /plan:use" - @tdd_issue @tdd_issue_4295 @tdd_expected_fail + @tdd_issue @tdd_issue_4295 Scenario: Overlay uses real slash_command_specs from catalog Given I have a SlashCommandOverlay instance When I initialise the overlay with real slash command specs @@ -31,9 +31,3 @@ Feature: TUI Slash Command Overlay Shows Descriptions And the overlay text should contain "Create a new session tab" And the overlay text should contain " /settings" And the overlay text should contain "Open settings" - - @tdd_issue @tdd_issue_4371 @tdd_expected_fail - Scenario: TDD capture - overlay previously showed names only without descriptions - Given I have a SlashCommandOverlay instance - When I initialise the overlay with real slash command specs - Then the overlay text should not contain "Create a new session tab"