mirror of
https://github.com/AgentSeal/codeburn.git
synced 2026-07-29 02:45:13 +00:00
test: cli-emitters expects the title field sessions rows now carry (#789)
The #782 titles threading added title to the sessions JSON row shape but missed this emitter test's key list; caught by the first full-suite run since the merge. Co-authored-by: reviewer <review@local>
This commit is contained in:
parent
8097052f67
commit
15a381b7d2
1 changed files with 1 additions and 1 deletions
|
|
@ -87,7 +87,7 @@ describe('CLI JSON emitters', () => {
|
|||
const rows = JSON.parse(result.stdout) as Array<Record<string, unknown>>
|
||||
expect(rows).toHaveLength(2)
|
||||
expect(Object.keys(rows[0]!)).toEqual([
|
||||
'sessionId', 'project', 'provider', 'models', 'cost', 'savingsUSD', 'calls', 'turns',
|
||||
'sessionId', 'title', 'project', 'provider', 'models', 'cost', 'savingsUSD', 'calls', 'turns',
|
||||
'inputTokens', 'outputTokens', 'cacheReadTokens', 'cacheWriteTokens',
|
||||
'startedAt', 'endedAt', 'durationMs',
|
||||
])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue