We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5e11c0 commit db97bc1Copy full SHA for db97bc1
1 file changed
src/agents/tools/message-tool.test.ts
@@ -111,6 +111,19 @@ const mocks = vi.hoisted(() => ({
111
),
112
}));
113
114
+vi.mock("../../channels/plugins/bundled.js", async () => {
115
+ const actual = await vi.importActual<typeof import("../../channels/plugins/bundled.js")>(
116
+ "../../channels/plugins/bundled.js",
117
+ );
118
+ // This unit suite installs minimal loaded plugins when it exercises channel actions.
119
+ // Bundled source entry loading belongs to the loader integration suites.
120
+ return {
121
+ ...actual,
122
+ getBundledChannelPlugin: vi.fn(() => undefined),
123
+ getBundledChannelSetupPlugin: vi.fn(() => undefined),
124
+ };
125
+});
126
+
127
type RunMessageActionInput = {
128
agentId?: string;
129
cfg?: unknown;
0 commit comments