chore: keep #31930 scoped to voice webhook path fix

This commit is contained in:
Peter Steinberger
2026-03-02 18:56:56 +00:00
parent 662f389f45
commit 99392f9868

View File

@@ -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([]);
});