We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0aae09a commit 5cc80f5Copy full SHA for 5cc80f5
test/test.options.ts
@@ -307,7 +307,7 @@ describe('Options', () => {
307
it('should allow using a GoogleAuth object for auth', async () => {
308
const google = new GoogleApis();
309
const auth = new GoogleAuth();
310
- const stub = sandbox.stub(auth, 'request').resolves({} as GaxiosResponse);
+ const stub = sandbox.stub(auth, 'request').resolves({} as any);
311
// global options
312
google.options({auth: auth as GoogleAuth<AuthClient>});
313
// per-API options
0 commit comments