feat(tui): render interactive transcript images

This commit is contained in:
Simon Klee 2026-08-03 08:20:05 +02:00
commit f89ac17f17
No known key found for this signature in database
GPG key ID: B91696044D47BEA3
4 changed files with 98 additions and 4 deletions

View file

@ -20,6 +20,7 @@ test("validates the session tabs setting", () => {
expect(decode({ tabs: { enabled: true, vertical: true } })).toEqual({ tabs: { enabled: true, vertical: true } })
expect(() => decode({ tabs: { enabled: "on" } })).toThrow()
expect(decode({ prompt: { image_preview: true } })).toEqual({ prompt: { image_preview: true } })
expect(decode({ session: { image_preview: true } })).toEqual({ session: { image_preview: true } })
})
test("resolves nested config and keybind defaults", () => {