fix(test): complete gateway plugin registry mock

This commit is contained in:
Peter Steinberger
2026-02-14 23:19:50 +00:00
parent c000847dc0
commit aaf03c60c9

View File

@@ -6,6 +6,8 @@ export const registryState: { registry: PluginRegistry } = {
registry: { registry: {
plugins: [], plugins: [],
tools: [], tools: [],
hooks: [],
typedHooks: [],
channels: [], channels: [],
providers: [], providers: [],
gatewayHandlers: {}, gatewayHandlers: {},
@@ -13,6 +15,7 @@ export const registryState: { registry: PluginRegistry } = {
httpRoutes: [], httpRoutes: [],
cliRegistrars: [], cliRegistrars: [],
services: [], services: [],
commands: [],
diagnostics: [], diagnostics: [],
} as PluginRegistry, } as PluginRegistry,
}; };