refactor: use CoreToolCallStatus in the the history data model (#19033)

This commit is contained in:
Jerop Kipruto
2026-02-13 17:20:14 -05:00
committed by GitHub
parent e7e4c68c5c
commit f87468c644
40 changed files with 322 additions and 268 deletions
+2 -1
View File
@@ -29,6 +29,7 @@ import {
type ResumedSessionData,
AuthType,
type AgentDefinition,
CoreToolCallStatus,
} from '@google/gemini-cli-core';
// Mock coreEvents
@@ -1412,7 +1413,7 @@ describe('AppContainer State Management', () => {
name: 'run_shell_command',
args: { command: 'ls > out' },
},
status: 'executing',
status: CoreToolCallStatus.Executing,
} as unknown as TrackedToolCall,
],
activePtyId: 'pty-1',