From 99392f986869705759f81b1f67f3763a54a62261 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Mon, 2 Mar 2026 18:56:56 +0000 Subject: [PATCH] chore: keep #31930 scoped to voice webhook path fix --- .../isolated-agent.uses-last-non-empty-agent-text-as.test.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/cron/isolated-agent.uses-last-non-empty-agent-text-as.test.ts b/src/cron/isolated-agent.uses-last-non-empty-agent-text-as.test.ts index 6536617f683..02e1e054fca 100644 --- a/src/cron/isolated-agent.uses-last-non-empty-agent-text-as.test.ts +++ b/src/cron/isolated-agent.uses-last-non-empty-agent-text-as.test.ts @@ -3,9 +3,7 @@ import fs from "node:fs/promises"; import os from "node:os"; import path from "node:path"; import { afterAll, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; -import { clearRuntimeAuthProfileStoreSnapshots } from "../agents/auth-profiles.js"; import { loadModelCatalog } from "../agents/model-catalog.js"; -import { _probeThrottleInternals } from "../agents/model-fallback.js"; import { runEmbeddedPiAgent } from "../agents/pi-embedded.js"; import type { CliDeps } from "../cli/deps.js"; import { runCronIsolatedAgentTurn } from "./isolated-agent.js"; @@ -215,8 +213,6 @@ describe("runCronIsolatedAgentTurn", () => { }); beforeEach(() => { - clearRuntimeAuthProfileStoreSnapshots(); - _probeThrottleInternals.lastProbeAttempt.clear(); vi.mocked(runEmbeddedPiAgent).mockClear(); vi.mocked(loadModelCatalog).mockResolvedValue([]); });