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