From ec2fec9bf85dc998bcbbaf38af5324c826f62b41 Mon Sep 17 00:00:00 2001 From: fyears Date: Sat, 6 Nov 2021 00:26:44 +0800 Subject: [PATCH] no need console.log --- tests/test-encrypt.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test-encrypt.ts b/tests/test-encrypt.ts index 3b8cefb..9f5ba44 100644 --- a/tests/test-encrypt.ts +++ b/tests/test-encrypt.ts @@ -23,9 +23,9 @@ describe("Encryption tests", () => { const k = "jfkkjkjbce7983ycdeknkkjckooAIUHIDIBIE((*BII)njD/d/dd/d/sjxhux"; const password = "hfiuibec989###oiu982bj1`"; const enc = await encryptStringToBase32(k, password); - console.log(enc); + // console.log(enc); const dec = await decryptBase32ToString(enc, password); - console.log(dec); + // console.log(dec); expect(dec).equal(k); });