From 81617717c825e551e857b738e53e34c569793806 Mon Sep 17 00:00:00 2001 From: Ashwini-Rathod Date: Tue, 9 Jan 2024 14:02:29 +0530 Subject: [PATCH] chore: removed console logs --- test/toRedactor.test.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/test/toRedactor.test.ts b/test/toRedactor.test.ts index 9cd5805..b336961 100644 --- a/test/toRedactor.test.ts +++ b/test/toRedactor.test.ts @@ -241,9 +241,6 @@ describe("Testing json to html conversion", () => { let jsonValue = expectedValue["fix_EB-745"].expectedJson let htmlValue = toRedactor(jsonValue) - console.log("🚀 ~ test ~ htmlValue:", htmlValue) - console.log(expectedValue["fix_EB-745"].html); - let testResult = isEqual(htmlValue, expectedValue["fix_EB-745"].html) expect(testResult).toBe(true) })