diff options
| author | Paul Buetow <paul@buetow.org> | 2026-03-06 18:08:19 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-03-06 18:08:19 +0200 |
| commit | 99a6cf4787fd92a25a53acbc9c0bae8bca87cc96 (patch) | |
| tree | 0c6f6506e944a0eed0fcefa7b9394681c5f178da /internal/tui/tui_test.go | |
| parent | 1561987330cb898f5ff64383a9c78e7e6559f118 (diff) | |
feat(tui): add dashboard bubble viz and expand help shortcuts
Diffstat (limited to 'internal/tui/tui_test.go')
| -rw-r--r-- | internal/tui/tui_test.go | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/internal/tui/tui_test.go b/internal/tui/tui_test.go index ad529fc..7c1d886 100644 --- a/internal/tui/tui_test.go +++ b/internal/tui/tui_test.go @@ -1006,7 +1006,10 @@ func TestGlobalHelpOverlayFitsStandardTerminal(t *testing.T) { if maxWidth > 80 { t.Fatalf("expected help overlay width <= 80, got %d", maxWidth) } - if !strings.Contains(out, "Flame Tab") || !strings.Contains(out, "Stream Tab") { - t.Fatalf("expected overlay to include tab-specific help sections") + if !strings.Contains(out, "Dashboard Tabs") { + t.Fatalf("expected overlay to include dashboard help section") + } + if !strings.Contains(out, "v bubbles") || !strings.Contains(out, "b metric") { + t.Fatalf("expected overlay to include bubble dashboard hotkeys") } } |
