From 18990f4feafc6034388a3e035e820e08f4eb9d0f Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Tue, 28 Apr 2026 20:41:54 +0100 Subject: [PATCH] test: avoid bundled discovery in disabled plugin test (#73235) (thanks @zqchris) --- src/plugins/loader.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/loader.test.ts b/src/plugins/loader.test.ts index 39d83e60652..d2ac0a05c09 100644 --- a/src/plugins/loader.test.ts +++ b/src/plugins/loader.test.ts @@ -5528,7 +5528,7 @@ module.exports = { id: "throws-after-import", register() {} };`, }); it("respects explicit disable in config", () => { - process.env.OPENCLAW_BUNDLED_PLUGINS_DIR = "/nonexistent/bundled/plugins"; + useNoBundledPlugins(); const plugin = writePlugin({ id: "config-disable", body: `module.exports = { id: "config-disable", register() {} };`,