feat: display ASCII banner on TUI startup

This commit is contained in:
Luxferre
2026-03-21 19:21:16 +02:00
parent 5a9c47abea
commit 9695a11cc4
2 changed files with 10 additions and 1 deletions
+3
View File
@@ -27,6 +27,9 @@ func TestInitialModel(t *testing.T) {
if len(m.history) != 1 {
t.Errorf("expected 1 initial message in history, got %d", len(m.history))
}
if !strings.Contains(m.history[0].Content, "Sidekick initialized") {
t.Error("expected initial message content to contain 'Sidekick initialized'")
}
}
func TestModelUpdate(t *testing.T) {