Skip to content

Commit

Permalink
Remove unnecessary log statement
Browse files Browse the repository at this point in the history
  • Loading branch information
N2D4 committed Dec 29, 2024
1 parent f5539c1 commit cc8aebe
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion apps/e2e/tests/backend/backend-helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,6 @@ export namespace Auth {
const accessToken = backendContext.value.userAuth?.accessToken;
if (accessToken) {
const aud = jose.decodeJwt(accessToken).aud;
console.log(accessToken, jose.decodeJwt(accessToken));
const jwks = jose.createRemoteJWKSet(new URL(`api/v1/projects/${aud}/.well-known/jwks.json`, STACK_BACKEND_BASE_URL));
const { payload } = await jose.jwtVerify(accessToken, jwks);
expect(payload).toEqual({
Expand Down

0 comments on commit cc8aebe

Please sign in to comment.