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 d258da4 commit b54a402Copy full SHA for b54a402
packages/auth/src/core/providers/oauth.test.ts
@@ -30,7 +30,6 @@ import { OAuthCredential } from '../credentials/oauth';
30
import sinon from 'sinon';
31
32
describe('core/providers/oauth', () => {
33
-
34
const callMethod = (tokenResponse: any) => {
35
return (OAuthProvider as any).oauthCredentialFromTaggedObject({
36
_tokenResponse: tokenResponse
@@ -199,7 +198,7 @@ describe('core/providers/oauth', () => {
199
198
it('returns null if providerId is missing', () => {
200
const result = callMethod({
201
oauthIdToken: 'id-token',
202
- oauthAccessToken: 'access-token',
+ oauthAccessToken: 'access-token'
203
// providerId is missing
204
});
205
expect(result).to.be.null;
0 commit comments