Match Solo summary cadence options

This commit is contained in:
2026-05-15 19:13:54 +01:00
parent d648d5b775
commit 6d90cd7185
6 changed files with 41 additions and 9 deletions

View File

@@ -21,6 +21,9 @@ func TestLoadSettingsDefaults(t *testing.T) {
if st.AutoSummary.Provider != "codex" {
t.Fatalf("provider = %q want codex", st.AutoSummary.Provider)
}
if st.AutoSummary.Cadence != "1m" {
t.Fatalf("cadence = %q want 1m", st.AutoSummary.Cadence)
}
if got := st.AutoSummary.modelFor("codex"); got != "gpt-5.4-mini" {
t.Fatalf("codex model = %q", got)
}