From 6e2a0a33d95ba9b2c47ccd4c2e37cd6a89fe22c2 Mon Sep 17 00:00:00 2001 From: joostdecock Date: Sun, 7 Aug 2022 15:17:02 +0200 Subject: [PATCH] fix(core): Removed debug statement in tests --- packages/core/tests/pattern.test.js | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/core/tests/pattern.test.js b/packages/core/tests/pattern.test.js index 7fbaed53762..0205b061119 100644 --- a/packages/core/tests/pattern.test.js +++ b/packages/core/tests/pattern.test.js @@ -725,7 +725,6 @@ it("Should retrieve the cutList", () => { const pattern = new Test() expect(JSON.stringify(pattern.getCutList())).to.equal(JSON.stringify({})) pattern.draft() - console.log(pattern.parts.front.cut) const list = `{"front":{"grain":90,"materials":{"lining":{"cut":4,"identical":true}}}}` expect(JSON.stringify(pattern.getCutList())).to.equal(list) });