From ccfc97c2357dc6aeb14078554e2c3da7effc55e4 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sat, 11 Apr 2026 14:30:23 +0100 Subject: [PATCH] test(channel-setup): mock channel metadata source --- src/commands/channel-setup/discovery.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/channel-setup/discovery.test.ts b/src/commands/channel-setup/discovery.test.ts index 1550b6d2ef5..f67744fe6d6 100644 --- a/src/commands/channel-setup/discovery.test.ts +++ b/src/commands/channel-setup/discovery.test.ts @@ -27,7 +27,7 @@ vi.mock("../../channels/plugins/catalog.js", () => ({ listChannelPluginCatalogEntries: (_args?: unknown) => listChannelPluginCatalogEntries(), })); -vi.mock("../../channels/registry.js", () => ({ +vi.mock("../../channels/chat-meta.js", () => ({ listChatChannels: () => listChatChannels(), }));