diff --git a/frontend/src/App.test.tsx b/frontend/src/App.test.tsx index 7663291a4d..9f5df1d3be 100644 --- a/frontend/src/App.test.tsx +++ b/frontend/src/App.test.tsx @@ -120,6 +120,7 @@ jest.mock("./components/Chat/ChatWindow", () => { attackResultId, conversationId, activeConversationId, + attackTarget, onConversationCreated, onSelectConversation, labels, @@ -129,6 +130,7 @@ jest.mock("./components/Chat/ChatWindow", () => { attackResultId: string | null; conversationId: string | null; activeConversationId: string | null; + attackTarget?: { identifier_hash?: string | null } | null; onConversationCreated: (attackResultId: string, conversationId: string) => void; onSelectConversation: (convId: string) => void; labels: Record; @@ -139,6 +141,7 @@ jest.mock("./components/Chat/ChatWindow", () => { {conversationId ?? "none"} {activeConversationId ?? "none"} {activeTarget ? "yes" : "no"} + {attackTarget?.identifier_hash ?? "none"} {labels.operator ?? ""} {JSON.stringify(labels)}