Log all session metadata (#6423)

This commit is contained in:
owenofbrien
2025-08-19 15:06:00 -05:00
committed by GitHub
parent b9cf1ea3ce
commit b561d3bbed
6 changed files with 108 additions and 112 deletions

View File

@@ -55,6 +55,11 @@ const mockConfig = {
getApprovalMode: vi.fn(() => ApprovalMode.DEFAULT),
getUsageStatisticsEnabled: () => true,
getDebugMode: () => false,
getSessionId: () => 'test-session-id',
getContentGeneratorConfig: () => ({
model: 'test-model',
authType: 'oauth-personal',
}),
};
class MockToolInvocation extends BaseToolInvocation<object, ToolResult> {