From bac552faf7af67989c271cab755b26ccc601f7d8 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Fri, 1 May 2026 23:07:17 +0100 Subject: [PATCH] test: drop implicit startup sidecar smoke fallback --- .../runtime-smoke.mjs | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/scripts/e2e/lib/bundled-plugin-install-uninstall/runtime-smoke.mjs b/scripts/e2e/lib/bundled-plugin-install-uninstall/runtime-smoke.mjs index fc203bfe01e..d0eda1a3a74 100644 --- a/scripts/e2e/lib/bundled-plugin-install-uninstall/runtime-smoke.mjs +++ b/scripts/e2e/lib/bundled-plugin-install-uninstall/runtime-smoke.mjs @@ -109,24 +109,8 @@ function buildPluginPlan(manifest) { ? contracts.speechProviders.filter(isNonEmptyString) : []; const tools = Array.isArray(contracts.tools) ? contracts.tools.filter(isNonEmptyString) : []; - const hasRuntimeContractSurface = - channels.length > 0 || - speechProviders.length > 0 || - tools.length > 0 || - (Array.isArray(manifest.providers) && manifest.providers.length > 0) || - (Array.isArray(manifest.cliBackends) && manifest.cliBackends.length > 0) || - (Array.isArray(contracts.mediaUnderstandingProviders) && - contracts.mediaUnderstandingProviders.length > 0) || - (Array.isArray(contracts.migrationProviders) && contracts.migrationProviders.length > 0); - const legacyImplicitStartupSidecar = - manifest.activation?.onStartup === undefined && - channels.length === 0 && - !hasRuntimeContractSurface; const activeInThisProbe = - manifest.activation?.onStartup === true || - legacyImplicitStartupSidecar || - channels.length > 0 || - speechProviders.length > 0; + manifest.activation?.onStartup === true || channels.length > 0 || speechProviders.length > 0; return { channels, speechProviders,