fix(conversations): add required seq to ToolTimelineEntry test fixtures (fixes red main, #4948) (#4949)

This commit is contained in:
Mega Mind
2026-07-16 14:19:41 +05:30
committed by GitHub
parent 69fef4ab99
commit 74091df4cb
@@ -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' }],
})
);
});