From 48e86a54a0d5791265638c72c93de0e5debae6ce Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Sun, 30 Aug 2026 16:19:17 +0900 Subject: [PATCH] chore(coding-agent): apply biome formatting to interactive-host-runtime test origin/main carries a biome-dirty hunk in spawnHost's env filter; every local 'npm run check' (biome check --write) reformats it into the working tree, polluting unrelated branches. Commit the canonical formatting once. --- packages/coding-agent/test/interactive-host-runtime.test.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/coding-agent/test/interactive-host-runtime.test.ts b/packages/coding-agent/test/interactive-host-runtime.test.ts index 1b957cf344..a38ae2ad60 100644 --- a/packages/coding-agent/test/interactive-host-runtime.test.ts +++ b/packages/coding-agent/test/interactive-host-runtime.test.ts @@ -78,7 +78,10 @@ function spawnHost( env: { ...Object.fromEntries( Object.entries(process.env).filter( - ([key]) => key !== "SENPI_BRAND" && !key.endsWith("_CODING_AGENT_DIR") && !key.endsWith("_CODING_AGENT_SESSION_DIR"), + ([key]) => + key !== "SENPI_BRAND" && + !key.endsWith("_CODING_AGENT_DIR") && + !key.endsWith("_CODING_AGENT_SESSION_DIR"), ), ), ...hermeticProviderEnv(),