Skip to content

Commit f24ed29

Browse files
BunsDevCopilot
andcommitted
test(tui): drop stale footer help-hint assertion
Commit 9e64bbc removed Alt+H from the footer hint bar and updated the Rust unit test, but missed the shell-suite assertion, breaking the Interactive terminal suite on every run since. Assert the current hint set (familiar/branch/mode) instead; /help coverage stays in the 04_help_overlay case. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent b3a35a0 commit f24ed29

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

scripts/tui-tests/cases/02_startup.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,11 @@ tc_startup() {
2525
# Input affordance.
2626
assert_contains "$s" "" "input prompt glyph present"
2727

28-
# Footer hint bar exposes the core keybindings.
29-
assert_contains "$s" "help" "footer advertises help binding"
28+
# Footer hint bar exposes the core keybindings. The help hint moved out of
29+
# the footer (9e64bbc dropped Alt+H); /help coverage lives in 04_help_overlay.
3030
assert_contains "$s" "familiar" "footer advertises familiar binding"
31+
assert_contains "$s" "branch" "footer advertises branch binding"
32+
assert_contains "$s" "mode" "footer advertises mode binding"
3133

3234
# No panic / error banner on a clean boot.
3335
assert_absent "$s" "panicked at" "no rust panic on startup"

0 commit comments

Comments
 (0)