diff options
| author | owenofbrien <[email protected]> | 2025-08-19 15:06:00 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-08-19 20:06:00 +0000 |
| commit | b561d3bbede8756ec7c3734ed9cb6bb5cbc9ee61 (patch) | |
| tree | 96b3eec2b9ee781fecc11ca8afa39a0d0d093db3 /packages/cli/src/ui/hooks/useToolScheduler.test.ts | |
| parent | b9cf1ea3ce513717416317fa21b87ce98a107ec6 (diff) | |
Log all session metadata (#6423)
Diffstat (limited to 'packages/cli/src/ui/hooks/useToolScheduler.test.ts')
| -rw-r--r-- | packages/cli/src/ui/hooks/useToolScheduler.test.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/packages/cli/src/ui/hooks/useToolScheduler.test.ts b/packages/cli/src/ui/hooks/useToolScheduler.test.ts index b2071931..8e060ee8 100644 --- a/packages/cli/src/ui/hooks/useToolScheduler.test.ts +++ b/packages/cli/src/ui/hooks/useToolScheduler.test.ts @@ -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> { |
