From fbebfc713fdd05003bc89b4c9cf07cbeff6536e2 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Mon, 10 Aug 2026 07:27:48 -0700 Subject: [PATCH] test(ui): remove retired source mirrors (#121607) --- ui/src/pages/chat/chat-pane.test-support.ts | 1 - ui/src/pages/chat/chat-task-suggestions.test.ts | 5 ----- 2 files changed, 6 deletions(-) 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,