refactor(plugins): decouple bundled plugin runtime loading

This commit is contained in:
Peter Steinberger
2026-03-29 09:08:06 +01:00
parent 1738d540f4
commit 8e0ab35b0e
582 changed files with 8057 additions and 22869 deletions

View File

@@ -14,6 +14,7 @@ import {
resolveTestRunExitCode,
} from "../../scripts/test-parallel-utils.mjs";
import { loadTestCatalog } from "../../scripts/test-planner/catalog.mjs";
import { bundledPluginFile } from "../helpers/bundled-plugin-paths.js";
const clearPlannerShardEnv = (env) => {
const nextEnv = { ...env };
@@ -54,10 +55,10 @@ const sharedTargetedUnitProxyFiles = (() => {
const targetedChannelProxyFiles = [
...sharedTargetedChannelProxyFiles,
"extensions/discord/src/monitor/message-handler.preflight.acp-bindings.test.ts",
"extensions/discord/src/monitor/monitor.agent-components.test.ts",
"extensions/telegram/src/bot.create-telegram-bot.test.ts",
"extensions/whatsapp/src/monitor-inbox.streams-inbound-messages.test.ts",
bundledPluginFile("discord", "src/monitor/message-handler.preflight.acp-bindings.test.ts"),
bundledPluginFile("discord", "src/monitor/monitor.agent-components.test.ts"),
bundledPluginFile("telegram", "src/bot.create-telegram-bot.test.ts"),
bundledPluginFile("whatsapp", "src/monitor-inbox.streams-inbound-messages.test.ts"),
];
const targetedUnitProxyFiles = [