From 942d46a4d5898dbf9d78804f579f4e05e2955679 Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Fri, 1 May 2026 00:19:35 -0700 Subject: [PATCH] test(e2e): assert canonical TTS provider in smoke --- .../lib/bundled-plugin-install-uninstall/runtime-smoke.mjs | 7 +++---- 1 file changed, 3 insertions(+), 4 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 f33721494e5..6bbdab1b1b3 100644 --- a/scripts/e2e/lib/bundled-plugin-install-uninstall/runtime-smoke.mjs +++ b/scripts/e2e/lib/bundled-plugin-install-uninstall/runtime-smoke.mjs @@ -336,10 +336,9 @@ async function runManifestProbes(plan, options) { if (plan.speechProviders.length > 0) { const providers = await rpcCall("tts.providers", {}, options); const status = await rpcCall("tts.status", {}, options); - for (const provider of plan.speechProviders) { - assertSpeechProviderVisible(providers, provider, "tts.providers"); - assertSpeechProviderVisible(status, provider, "tts.status"); - } + const provider = plan.speechProviders[0]; + assertSpeechProviderVisible(providers, provider, "tts.providers"); + assertSpeechProviderVisible(status, provider, "tts.status"); } }