diff --git a/packages/cli/src/ui/components/Footer.test.tsx b/packages/cli/src/ui/components/Footer.test.tsx index ce6a807af..5f6a03e26 100644 --- a/packages/cli/src/ui/components/Footer.test.tsx +++ b/packages/cli/src/ui/components/Footer.test.tsx @@ -34,7 +34,22 @@ const createMockUIState = (overrides: Partial = {}): UIState => ({ sessionStats: { lastPromptTokenCount: 100, + sessionId: 'test-session', + metrics: { + models: {}, + tools: { + totalCalls: 0, + totalSuccess: 0, + totalFail: 0, + totalDurationMs: 0, + totalDecisions: { accept: 0, reject: 0, modify: 0, auto_accept: 0 }, + byName: {}, + }, + files: { totalLinesAdded: 0, totalLinesRemoved: 0 }, + }, }, + currentModel: 'gemini-pro', + branchName: undefined, geminiMdFileCount: 0, contextFileNames: [], showToolDescriptions: false,