From 19382fa66e9538a9428f797ea7506eaa7da3d263 Mon Sep 17 00:00:00 2001 From: sanderPostma Date: Tue, 21 Jan 2025 11:32:23 +0100 Subject: [PATCH] chore: removed commented out code --- .../lib/__tests__/AuthenticationResponse.response.spec.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/packages/siop-oid4vp/lib/__tests__/AuthenticationResponse.response.spec.ts b/packages/siop-oid4vp/lib/__tests__/AuthenticationResponse.response.spec.ts index aca7be46..381bf698 100644 --- a/packages/siop-oid4vp/lib/__tests__/AuthenticationResponse.response.spec.ts +++ b/packages/siop-oid4vp/lib/__tests__/AuthenticationResponse.response.spec.ts @@ -465,9 +465,6 @@ describe('create JWT from Request JWT should', () => { } const requestObject = await RequestObject.fromOpts(requestOpts) - /* console.log( - JSON.stringify(await AuthenticationResponse.createJWTFromRequestJWT(requestWithJWT.jwt, responseOpts, verifyOpts)) - );*/ const jwt = await requestObject.toJwt() if (!jwt) throw new Error('JWT is undefined') const authorizationRequest = await AuthorizationResponse.fromRequestObject(jwt, responseOpts, verifyOpts) @@ -783,9 +780,6 @@ describe('create JWT from Request JWT should', () => { } const requestObject = await RequestObject.fromOpts(requestOpts) - /* console.log( - JSON.stringify(await AuthenticationResponse.createJWTFromRequestJWT(requestWithJWT.jwt, responseOpts, verifyOpts)) - );*/ const jwt = await requestObject.toJwt() if (!jwt) throw new Error('JWT is undefined') const authorizationRequest = await AuthorizationResponse.fromRequestObject(jwt, responseOpts, verifyOpts)