fix(telemetry): update trace.test.ts to expect conversation id in span attributes

This commit is contained in:
Spencer
2026-04-13 21:27:15 +00:00
parent 1454d80f49
commit e4f07887d9
+5 -1
View File
@@ -137,7 +137,11 @@ describe('runInDevTraceSpan', () => {
expect(trace.getTracer).toHaveBeenCalled();
expect(mockTracer.startActiveSpan).toHaveBeenCalledWith(
GeminiCliOperation.LLMCall,
{},
{
attributes: {
[GEN_AI_CONVERSATION_ID]: 'test-session-id',
},
},
expect.any(Function),
);
});