mirror of
https://github.com/tinyhumansai/openhuman.git
synced 2026-07-27 21:08:00 +00:00
fix(conversations): add required seq to ToolTimelineEntry test fixtures (fixes red main, #4948) (#4949)
This commit is contained in:
@@ -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' }],
|
||||
})
|
||||
);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user