diff --git a/ui/src/ui/navigation.test.ts b/ui/src/ui/navigation.test.ts index 168125d71..8dffaa7d3 100644 --- a/ui/src/ui/navigation.test.ts +++ b/ui/src/ui/navigation.test.ts @@ -27,23 +27,23 @@ describe("iconForTab", () => { }); it("returns stable icons for known tabs", () => { - expect(iconForTab("chat")).toBe("๐Ÿ’ฌ"); - expect(iconForTab("overview")).toBe("๐Ÿ“Š"); - expect(iconForTab("channels")).toBe("๐Ÿ”—"); - expect(iconForTab("instances")).toBe("๐Ÿ“ก"); - expect(iconForTab("sessions")).toBe("๐Ÿ“„"); - expect(iconForTab("cron")).toBe("โฐ"); - expect(iconForTab("skills")).toBe("โšก๏ธ"); - expect(iconForTab("nodes")).toBe("๐Ÿ–ฅ๏ธ"); - expect(iconForTab("config")).toBe("โš™๏ธ"); - expect(iconForTab("debug")).toBe("๐Ÿž"); - expect(iconForTab("logs")).toBe("๐Ÿงพ"); + expect(iconForTab("chat")).toBe("messageSquare"); + expect(iconForTab("overview")).toBe("barChart"); + expect(iconForTab("channels")).toBe("link"); + expect(iconForTab("instances")).toBe("radio"); + expect(iconForTab("sessions")).toBe("fileText"); + expect(iconForTab("cron")).toBe("loader"); + expect(iconForTab("skills")).toBe("zap"); + expect(iconForTab("nodes")).toBe("monitor"); + expect(iconForTab("config")).toBe("settings"); + expect(iconForTab("debug")).toBe("bug"); + expect(iconForTab("logs")).toBe("scrollText"); }); it("returns a fallback icon for unknown tab", () => { // TypeScript won't allow this normally, but runtime could receive unexpected values const unknownTab = "unknown" as Tab; - expect(iconForTab(unknownTab)).toBe("๐Ÿ“"); + expect(iconForTab(unknownTab)).toBe("folder"); }); });