test(ui): remove retired source mirrors (#121607)

This commit is contained in:
Peter Steinberger 2026-08-10 07:27:48 -07:00 committed by GitHub
parent ebd03db156
commit fbebfc713f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 0 additions and 6 deletions

View file

@ -68,7 +68,6 @@ export type TestChatPane = HTMLElement & {
handleSessionSuggestionEvent: (event: SessionSuggestionEvent) => void;
handleSessionTypingEvent: (event: SessionTypingEvent) => void;
typingActors: Map<string, { label: string; expiresAt: number }>;
typingActorViews: () => { id: string; label: string }[];
refreshSessionSuggestions: () => Promise<void>;
resolveCurrentSessionSuggestion: (
suggestion: SessionSuggestion,

View file

@ -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,