From 5c5aeaddc2bb28e7fc38c6c223a44f8ea0df1c92 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sun, 2 Aug 2026 22:43:42 -0700 Subject: [PATCH] test(cli): isolate cold plugin import probes (#118404) Co-authored-by: Peter Steinberger --- src/cli/cold-command-plugin-imports.process.test.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/cli/cold-command-plugin-imports.process.test.ts b/src/cli/cold-command-plugin-imports.process.test.ts index 3b26b4ba1fb6..94141583a55a 100644 --- a/src/cli/cold-command-plugin-imports.process.test.ts +++ b/src/cli/cold-command-plugin-imports.process.test.ts @@ -147,6 +147,8 @@ it.each(cases)( cwd: path.resolve("."), env: { ...process.env, + // This fixture owns command imports, not entrypoint respawn or compile-cache behavior. + NODE_DISABLE_COMPILE_CACHE: "1", NODE_ENV: undefined, VITEST: undefined, OPENCLAW_CLAWHUB_URL: clawHubUrl, @@ -155,6 +157,7 @@ it.each(cases)( OPENCLAW_DISABLE_BUNDLED_PLUGINS: "1", OPENCLAW_DEV_SOURCE_ROOT: path.resolve("."), OPENCLAW_HOME: path.join(root, "home"), + OPENCLAW_NO_RESPAWN: "1", OPENCLAW_STATE_DIR: stateDir, }, maxBuffer: 4 * 1024 * 1024,