feat(tui): add mini splash setting (#38317)

Fix #38010
This commit is contained in:
Simon Klee 2026-07-22 15:46:50 +02:00 committed by GitHub
commit 8fad13365b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 89 additions and 18 deletions

View file

@ -106,17 +106,26 @@ describe("run runtime boot", () => {
shell_output: "hide",
turn_summary: "show",
footer: "show",
splash: "show",
mono: false,
})
expect(
resolveMiniSettings({
mini: { thinking: "show", shell_output: "show", turn_summary: "hide", footer: "hide", mono: true },
mini: {
thinking: "show",
shell_output: "show",
turn_summary: "hide",
footer: "hide",
splash: "hide",
mono: true,
},
}),
).toEqual({
thinking: "show",
shell_output: "show",
turn_summary: "hide",
footer: "hide",
splash: "hide",
mono: true,
})
})