From f35914f8205db2ad388f05a60320b71a2e17c87b Mon Sep 17 00:00:00 2001 From: Adam Weidman Date: Thu, 12 Mar 2026 00:17:39 -0400 Subject: [PATCH] fix: cast GoogleAuth mock through unknown for TS compatibility --- .../agents/auth-provider/google-credentials-provider.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/agents/auth-provider/google-credentials-provider.test.ts b/packages/core/src/agents/auth-provider/google-credentials-provider.test.ts index c0dc3ff531..ec8780cd95 100644 --- a/packages/core/src/agents/auth-provider/google-credentials-provider.test.ts +++ b/packages/core/src/agents/auth-provider/google-credentials-provider.test.ts @@ -43,7 +43,7 @@ describe('GoogleCredentialsAuthProvider', () => { }, }); - (GoogleAuth as Mock).mockImplementation(() => ({ + (GoogleAuth as unknown as Mock).mockImplementation(() => ({ getClient: mockGetClient, getIdTokenClient: mockGetIdTokenClient, }));