From 1b1b1b41a31002d1178b642d72a495d1aa28b7f5 Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Fri, 1 May 2026 01:06:34 -0700 Subject: [PATCH] test(e2e): give plugin runtime RPCs more headroom --- .../e2e/lib/bundled-plugin-install-uninstall/runtime-smoke.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 2e0a7020ab4..5729bc89f35 100644 --- a/scripts/e2e/lib/bundled-plugin-install-uninstall/runtime-smoke.mjs +++ b/scripts/e2e/lib/bundled-plugin-install-uninstall/runtime-smoke.mjs @@ -11,7 +11,7 @@ const READY_TIMEOUT_MS = readPositiveInt( process.env.OPENCLAW_BUNDLED_PLUGIN_RUNTIME_READY_MS, 180000, ); -const RPC_TIMEOUT_MS = readPositiveInt(process.env.OPENCLAW_BUNDLED_PLUGIN_RUNTIME_RPC_MS, 30000); +const RPC_TIMEOUT_MS = readPositiveInt(process.env.OPENCLAW_BUNDLED_PLUGIN_RUNTIME_RPC_MS, 60000); function readPositiveInt(raw, fallback) { const parsed = Number.parseInt(String(raw || ""), 10);