Tests: fix provider auth plugin mock spread

This commit is contained in:
Vincent Koc 2026-03-18 12:01:05 -07:00
parent 600f57c979
commit ecfa79ee4c
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ import path from "node:path";
import { afterAll, beforeAll, beforeEach, describe, expect, it, vi } from "vitest";
import { NON_ENV_SECRETREF_MARKER } from "../agents/model-auth-markers.js";
const resolveProviderUsageAuthWithPluginMock = vi.fn(async () => null);
const resolveProviderUsageAuthWithPluginMock = vi.fn(async (..._args: unknown[]) => null);
vi.mock("../plugins/provider-runtime.js", () => ({
resolveProviderUsageAuthWithPlugin: (...args: unknown[]) =>