We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28d7f9a commit 9c7e0a6Copy full SHA for 9c7e0a6
test/integration/setup.ts
@@ -19,7 +19,7 @@ import fs = require('fs');
19
import minimist = require('minimist');
20
import path = require('path');
21
import {random} from 'lodash';
22
-import { Credential, GoogleOAuthAccessToken, Certificate } from '../../src/auth/credential';
+import { Credential, GoogleOAuthAccessToken } from '../../src/auth/credential';
23
24
/* tslint:disable:no-var-requires */
25
const chalk = require('chalk');
@@ -117,10 +117,6 @@ class CertificatelessCredential implements Credential {
117
public getAccessToken(): Promise<GoogleOAuthAccessToken> {
118
return this.delegate.getAccessToken();
119
}
120
-
121
- public getCertificate(): Certificate | null {
122
- return null;
123
- }
124
125
126
/**
0 commit comments