diff --git a/src/config/zod-schema.providers.lazy-runtime.test.ts b/src/config/zod-schema.providers.lazy-runtime.test.ts index b78786edaa0..d90f5dee8eb 100644 --- a/src/config/zod-schema.providers.lazy-runtime.test.ts +++ b/src/config/zod-schema.providers.lazy-runtime.test.ts @@ -26,6 +26,16 @@ describe("ChannelsSchema bundled runtime loading", () => { vi.doMock("../plugins/plugin-registry.js", () => ({ loadPluginManifestRegistryForPluginRegistry: (options?: Record) => loadPluginManifestRegistryMock(options), + loadPluginRegistrySnapshotWithMetadata: () => ({ + source: "derived", + snapshot: { plugins: [] }, + diagnostics: [], + }), + })); + vi.doMock("../plugins/plugin-metadata-snapshot.js", () => ({ + loadPluginMetadataSnapshot: () => ({ + manifestRegistry: loadPluginManifestRegistryMock({ includeDisabled: true }), + }), })); vi.doMock("../plugins/bundled-channel-config-metadata.js", () => ({ collectBundledChannelConfigs: (params: unknown) => collectBundledChannelConfigsMock(params),