From c7538e326d95733073cd11b901836756de9ad040 Mon Sep 17 00:00:00 2001 From: Adam Weidman Date: Mon, 18 May 2026 14:42:48 -0400 Subject: [PATCH] fix(core): address jacob's review comments on local-invocation (license year, description truncation, callId parallel tracking) --- packages/core/src/agent/content-utils.test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/core/src/agent/content-utils.test.ts b/packages/core/src/agent/content-utils.test.ts index 0ed681c078..acf8a4a329 100644 --- a/packages/core/src/agent/content-utils.test.ts +++ b/packages/core/src/agent/content-utils.test.ts @@ -192,6 +192,7 @@ describe('contentPartsToGeminiParts', () => { const content = [ { type: 'custom_widget', payload: 123 }, ] as unknown as ContentPart[]; + const warnSpy = vi.spyOn(debugLogger, 'warn'); const result = contentPartsToGeminiParts(content);