fix: cast GoogleAuth mock through unknown for TS compatibility

This commit is contained in:
Adam Weidman
2026-03-12 00:17:39 -04:00
parent 583b724412
commit f35914f820

View File

@@ -43,7 +43,7 @@ describe('GoogleCredentialsAuthProvider', () => {
},
});
(GoogleAuth as Mock).mockImplementation(() => ({
(GoogleAuth as unknown as Mock).mockImplementation(() => ({
getClient: mockGetClient,
getIdTokenClient: mockGetIdTokenClient,
}));