mini: add hideable footer details (#38192)

This commit is contained in:
Simon Klee 2026-07-21 23:28:40 +02:00 committed by GitHub
commit 2ed8fe5960
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 130 additions and 16 deletions

View file

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