From cdca4c18bb08ea8e1e8bc850cc46de7704f913c8 Mon Sep 17 00:00:00 2001 From: Dallin Romney Date: Mon, 10 Aug 2026 13:15:58 +0800 Subject: [PATCH] fix(qa): activate Telegram startup plugin (#121010) Extracted from #120588 at 2d0fdeb61fa06f9fa97b9626bb5a2f9016e45202. --- test/e2e/qa-lab/runtime/telegram-bot-token-runtime.test.ts | 4 ++++ test/e2e/qa-lab/runtime/telegram-bot-token-runtime.ts | 6 ++++++ 2 files changed, 10 insertions(+) diff --git a/test/e2e/qa-lab/runtime/telegram-bot-token-runtime.test.ts b/test/e2e/qa-lab/runtime/telegram-bot-token-runtime.test.ts index 8a2491cadccd..e0770dd27420 100644 --- a/test/e2e/qa-lab/runtime/telegram-bot-token-runtime.test.ts +++ b/test/e2e/qa-lab/runtime/telegram-bot-token-runtime.test.ts @@ -101,6 +101,10 @@ describe("telegram bot token runtime evidence", () => { accounts: { "qa-live": { botToken: leasedToken } }, }, }, + plugins: { + allow: ["telegram"], + entries: { telegram: { enabled: true } }, + }, }, env: { OPENCLAW_SKIP_CHANNELS: undefined, diff --git a/test/e2e/qa-lab/runtime/telegram-bot-token-runtime.ts b/test/e2e/qa-lab/runtime/telegram-bot-token-runtime.ts index a22373eb8abb..ef6f1e4f1216 100644 --- a/test/e2e/qa-lab/runtime/telegram-bot-token-runtime.ts +++ b/test/e2e/qa-lab/runtime/telegram-bot-token-runtime.ts @@ -230,6 +230,12 @@ export async function runTelegramBotTokenRuntime( }, }, }, + // The isolated Gateway inherits VITEST, where bundled plugins are not + // implicitly enabled. Activate the product plugin this proof exercises. + plugins: { + allow: ["telegram"], + entries: { telegram: { enabled: true } }, + }, }, env: { OPENCLAW_SKIP_CHANNELS: undefined,