From d1374027873cd33f01d38566ac4bcf39b56615eb Mon Sep 17 00:00:00 2001 From: Hweinstock Date: Wed, 9 Sep 2026 15:51:55 +0000 Subject: [PATCH 1/4] fix(telemetry): disable network export in test preload --- src/testing/setup.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/testing/setup.ts b/src/testing/setup.ts index 3aec3b873..fccc59377 100644 --- a/src/testing/setup.ts +++ b/src/testing/setup.ts @@ -17,3 +17,5 @@ process.env.FORCE_COLOR = "0"; // terminal env at import time. Pin the Windows Terminal marker so frame // assertions on ❯ ✗ ↵ hold on a plain conhost dev box as well. process.env.WT_SESSION ??= "bun-test"; + +process.env.AGENTCORE_TELEMETRY_DISABLED = "1"; From d7770eaa31c571e922c12c7ddf65d46b9196bace Mon Sep 17 00:00:00 2001 From: Hweinstock Date: Wed, 9 Sep 2026 15:51:56 +0000 Subject: [PATCH 2/4] ci: drop redundant AGENTCORE_TELEMETRY_DISABLED from verify --- .github/workflows/verify.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 85273ba5f..955ba3046 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -11,9 +11,6 @@ on: CODECOV_TOKEN: required: false -env: - AGENTCORE_TELEMETRY_DISABLED: "1" - jobs: verify: name: ${{ matrix.name }} From e0e22faf9a4c458ce1747106f4dd4a9911fa680f Mon Sep 17 00:00:00 2001 From: Hweinstock Date: Wed, 9 Sep 2026 16:11:54 +0000 Subject: [PATCH 3/4] chore: remove stale preload comment from bunfig --- bunfig.toml | 3 --- 1 file changed, 3 deletions(-) diff --git a/bunfig.toml b/bunfig.toml index 63adf5a65..c2beb1da9 100644 --- a/bunfig.toml +++ b/bunfig.toml @@ -1,7 +1,4 @@ [test] -# Preload runs before any test module loads. setup.ts pins FORCE_COLOR=0 so Ink -# frames are plain text (no ANSI color codes) regardless of whether stdout is a -# TTY, keeping frame assertions deterministic across `bun test` and piped runs. preload = ["./src/testing/setup.ts"] pathIgnorePatterns = ["src/assets/**", "out/**", "dist/**"] coveragePathIgnorePatterns = ["src/testing/**", "src/assets/**"] From d5b136deb65960b7b14a22f965cb1053358e4dc9 Mon Sep 17 00:00:00 2001 From: Hweinstock Date: Wed, 9 Sep 2026 16:45:44 +0000 Subject: [PATCH 4/4] ci: keep AGENTCORE_TELEMETRY_DISABLED to cover binary smoke test --- .github/workflows/verify.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 955ba3046..85273ba5f 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -11,6 +11,9 @@ on: CODECOV_TOKEN: required: false +env: + AGENTCORE_TELEMETRY_DISABLED: "1" + jobs: verify: name: ${{ matrix.name }}