diff --git a/src/auto-reply/reply/commands-models.test.ts b/src/auto-reply/reply/commands-models.test.ts index 8b7865e7fc7..39c959ddd0b 100644 --- a/src/auto-reply/reply/commands-models.test.ts +++ b/src/auto-reply/reply/commands-models.test.ts @@ -54,6 +54,12 @@ const telegramModelsTestPlugin: ChannelPlugin = { }, }; +const textSurfaceModelsTestPlugins = (["discord", "whatsapp"] as const).map((id) => ({ + pluginId: id, + plugin: createChannelTestPluginBase({ id }), + source: "test", +})); + beforeEach(() => { modelCatalogMocks.loadModelCatalog.mockReset(); modelCatalogMocks.loadModelCatalog.mockResolvedValue([ @@ -67,6 +73,7 @@ beforeEach(() => { modelAuthLabelMocks.resolveModelAuthLabel.mockReturnValue(undefined); setActivePluginRegistry( createTestRegistry([ + ...textSurfaceModelsTestPlugins, { pluginId: "telegram", plugin: telegramModelsTestPlugin,