diff --git a/src/agents/runtime-plugins.test.ts b/src/agents/runtime-plugins.test.ts index 9366a33221c..5587f784ba7 100644 --- a/src/agents/runtime-plugins.test.ts +++ b/src/agents/runtime-plugins.test.ts @@ -106,7 +106,6 @@ describe("ensureRuntimePluginsLoaded", () => { expect(hoisted.resolveRuntimePluginRegistry).toHaveBeenCalledWith({ config: {} as never, - installBundledRuntimeDeps: false, onlyPluginIds: ["telegram"], workspaceDir: "/tmp/workspace", runtimeOptions: { @@ -140,7 +139,6 @@ describe("ensureRuntimePluginsLoaded", () => { expect(hoisted.resolveRuntimePluginRegistry).toHaveBeenCalledWith({ config, - installBundledRuntimeDeps: false, onlyPluginIds: ["telegram"], workspaceDir: "/tmp/workspace", runtimeOptions: { diff --git a/src/plugins/loader.runtime-registry.test.ts b/src/plugins/loader.runtime-registry.test.ts index e1af883d9a3..846aaf9a1b7 100644 --- a/src/plugins/loader.runtime-registry.test.ts +++ b/src/plugins/loader.runtime-registry.test.ts @@ -161,7 +161,6 @@ describe("getCompatibleActivePluginRegistry", () => { __testing.getCompatibleActivePluginRegistry({ ...loadOptions, activate: false, - installBundledRuntimeDeps: false, toolDiscovery: true, }), ).toBe(registry); @@ -189,7 +188,6 @@ describe("getCompatibleActivePluginRegistry", () => { __testing.getCompatibleActivePluginRegistry({ ...loadOptions, onlyPluginIds: ["demo"], - installBundledRuntimeDeps: false, }), ).toBe(registry); }); @@ -217,7 +215,6 @@ describe("getCompatibleActivePluginRegistry", () => { ...loadOptions, workspaceDir: "/tmp/workspace-b", onlyPluginIds: ["demo"], - installBundledRuntimeDeps: false, }), ).toBeUndefined(); expect( @@ -230,14 +227,12 @@ describe("getCompatibleActivePluginRegistry", () => { }, }, onlyPluginIds: ["demo"], - installBundledRuntimeDeps: false, }), ).toBeUndefined(); expect( __testing.getCompatibleActivePluginRegistry({ ...loadOptions, onlyPluginIds: ["missing"], - installBundledRuntimeDeps: false, }), ).toBeUndefined(); }); @@ -260,7 +255,6 @@ describe("getCompatibleActivePluginRegistry", () => { __testing.getCompatibleActivePluginRegistry({ ...loadOptions, activate: false, - installBundledRuntimeDeps: false, runtimeOptions: { allowGatewaySubagentBinding: true, },