Skip to content

Commit

Permalink
fix: rm unnecessary console.log in unit tests (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
IceHe authored Nov 2, 2021
1 parent 5d329d0 commit 30f6933
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/client/src/generators.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { generateCodeVerifier, generateCodeChallenge } from './generators';

test('generate codeVerifier with fixed length', () => {
const verifier = generateCodeVerifier();
console.log(Math.ceil(128 * 1.33));
expect(verifier.length).toEqual(Math.ceil(128 * 1.34));
});

Expand Down

0 comments on commit 30f6933

Please sign in to comment.