fix: stabilize rebased full gate

This commit is contained in:
Peter Steinberger
2026-03-18 03:59:07 +00:00
parent 0cddb5fb7c
commit b5d2123156
4 changed files with 19 additions and 4 deletions

View File

@@ -92,6 +92,9 @@ const probeGatewayReachable = vi.hoisted(() => vi.fn(async () => ({ ok: true }))
const buildPluginCompatibilityNotices = vi.hoisted(() =>
vi.fn((): PluginCompatibilityNotice[] => []),
);
const formatPluginCompatibilityNotice = vi.hoisted(() =>
vi.fn((notice: PluginCompatibilityNotice) => `${notice.pluginId} ${notice.message}`),
);
vi.mock("../commands/onboard-channels.js", () => ({
setupChannels,
@@ -178,6 +181,7 @@ vi.mock("../infra/control-ui-assets.js", () => ({
vi.mock("../plugins/status.js", () => ({
buildPluginCompatibilityNotices,
formatPluginCompatibilityNotice,
}));
vi.mock("../channels/plugins/index.js", () => ({