From 1e43cc4182d3643e59b37f46f38eb61767d9c89e Mon Sep 17 00:00:00 2001 From: M3gA-Mind Date: Thu, 16 Jul 2026 14:13:46 +0530 Subject: [PATCH] fix(conversations): add required seq to ToolTimelineEntry test fixtures Closes #4948 --- app/src/pages/__tests__/Conversations.render.test.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/pages/__tests__/Conversations.render.test.tsx b/app/src/pages/__tests__/Conversations.render.test.tsx index 060e8bb118..2eccd61320 100644 --- a/app/src/pages/__tests__/Conversations.render.test.tsx +++ b/app/src/pages/__tests__/Conversations.render.test.tsx @@ -2411,7 +2411,7 @@ describe('Conversations — agent task insights panel anchoring (#3717 Bug 2)', store!.dispatch( setToolTimelineForThread({ threadId: threadA.id, - entries: [{ id: 'a-1', name: 'web_fetch', round: 1, status: 'success' }], + entries: [{ id: 'a-1', name: 'web_fetch', round: 1, seq: 0, status: 'success' }], }) ); }); @@ -2435,7 +2435,7 @@ describe('Conversations — agent task insights panel anchoring (#3717 Bug 2)', store!.dispatch( setToolTimelineForThread({ threadId: threadB.id, - entries: [{ id: 'b-1', name: 'send_email', round: 1, status: 'success' }], + entries: [{ id: 'b-1', name: 'send_email', round: 1, seq: 0, status: 'success' }], }) ); });