diff --git a/ui/src/pages/chat/chat-pane.test-support.ts b/ui/src/pages/chat/chat-pane.test-support.ts index 7c4ec8b74fb..0dc32859690 100644 --- a/ui/src/pages/chat/chat-pane.test-support.ts +++ b/ui/src/pages/chat/chat-pane.test-support.ts @@ -68,7 +68,6 @@ export type TestChatPane = HTMLElement & { handleSessionSuggestionEvent: (event: SessionSuggestionEvent) => void; handleSessionTypingEvent: (event: SessionTypingEvent) => void; typingActors: Map; - typingActorViews: () => { id: string; label: string }[]; refreshSessionSuggestions: () => Promise; resolveCurrentSessionSuggestion: ( suggestion: SessionSuggestion, diff --git a/ui/src/pages/chat/chat-task-suggestions.test.ts b/ui/src/pages/chat/chat-task-suggestions.test.ts index e6c3fa063a9..de66a43eaf1 100644 --- a/ui/src/pages/chat/chat-task-suggestions.test.ts +++ b/ui/src/pages/chat/chat-task-suggestions.test.ts @@ -132,11 +132,6 @@ describe("chat task suggestions", () => { expect(copy?.textContent?.trim()).toBe("Copied"); }); - it("renders no card icon column", () => { - const { container } = renderSuggestion(); - expect(container.querySelector(".task-suggestion__icon")).toBeNull(); - }); - it("offers no acceptance-mode actions when modes are not advertised", () => { const { container, onAccept } = renderSuggestion({ canAcceptTaskSuggestionModes: false,