diff --git a/src/config/bundled-channel-config-runtime.test.ts b/src/config/bundled-channel-config-runtime.test.ts index e375746e8cf2..39147c6b7e95 100644 --- a/src/config/bundled-channel-config-runtime.test.ts +++ b/src/config/bundled-channel-config-runtime.test.ts @@ -1,6 +1,24 @@ import { beforeEach, describe, expect, it, vi } from "vitest"; import { importFreshModule } from "../../test/helpers/import-fresh.ts"; +vi.mock("../plugins/bundled-plugin-metadata.js", () => ({ + listBundledPluginMetadata: () => [ + { + manifest: { + channelConfigs: { + msteams: { + schema: { type: "object" }, + runtime: { configWrites: true }, + }, + whatsapp: { + schema: { type: "object" }, + }, + }, + }, + }, + ], +})); + describe("bundled channel config runtime", () => { beforeEach(() => { vi.doUnmock("../channels/plugins/bundled.js");