fix(tui): pin todo panel above live output

This commit is contained in:
Brooklyn Nicholson
2026-04-26 15:27:31 -05:00
parent a7831b63db
commit 3271ffbd80
6 changed files with 38 additions and 15 deletions

View File

@@ -0,0 +1,9 @@
import { describe, expect, it } from 'vitest'
import { liveTailOrder } from './liveLayout.js'
describe('liveTailOrder', () => {
it('keeps todo before transcript and assistant live output', () => {
expect(liveTailOrder()).toEqual(['todo', 'history', 'assistant'])
})
})