Fixed a TS type error in the OIDC provider test

This commit is contained in:
Brian Leathem
2020-11-23 13:41:37 -08:00
parent 5f1c1c2edf
commit 636cc58dca
@@ -54,7 +54,7 @@ describe('OidcAuthProvider', () => {
.get('/.well-known/openid-configuration')
.reply(200, issuerMetadata);
const provider = new OidcAuthProvider(clientMetadata);
const strategy = ((await provider._strategy) as any) as {
const strategy = ((await (provider as any)._strategy) as any) as {
_client: ClientMetadata;
_issuer: IssuerMetadata;
};