From ecfa79ee4ca43ffa8f596e2a9ca6b4f43502e6eb Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Wed, 18 Mar 2026 12:01:05 -0700 Subject: [PATCH] Tests: fix provider auth plugin mock spread --- src/infra/provider-usage.auth.normalizes-keys.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/infra/provider-usage.auth.normalizes-keys.test.ts b/src/infra/provider-usage.auth.normalizes-keys.test.ts index 0309a63c7f6..27d52b418cd 100644 --- a/src/infra/provider-usage.auth.normalizes-keys.test.ts +++ b/src/infra/provider-usage.auth.normalizes-keys.test.ts @@ -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[]) =>