From 277474d70109c2c58dd0706c8e5ed56c5342edb9 Mon Sep 17 00:00:00 2001 From: Joost De Cock Date: Mon, 13 Aug 2018 10:34:03 +0200 Subject: [PATCH] :white_check_mark: Removed lingering output from tests --- tests/path.test.js | 3 --- tests/svg.test.js | 1 - 2 files changed, 4 deletions(-) diff --git a/tests/path.test.js b/tests/path.test.js index 9db3ac4fad5..797762a8ec8 100644 --- a/tests/path.test.js +++ b/tests/path.test.js @@ -320,11 +320,8 @@ it("Should reverse a path", () => { .curve(new a.Point(0, 40), new a.Point(123, 34), new a.Point(230, 4)) .close(); let rev = test.reverse(); - console.log("rev", rev); let tb = test.bbox(); let rb = rev.bbox(); - console.log("tb", tb); - console.log("rb", rb); expect(tb.topLeft.x).to.equal(rb.topLeft.x); expect(tb.topLeft.y).to.equal(rb.topLeft.y); expect(tb.bottomRight.x).to.equal(rb.bottomRight.x); diff --git a/tests/svg.test.js b/tests/svg.test.js index f6a4c8a5822..2c6586270bb 100644 --- a/tests/svg.test.js +++ b/tests/svg.test.js @@ -80,7 +80,6 @@ it("Should not render Svg path when render property is false", () => { p.paths.test.render = false; expect(pattern.render()).to.equalIgnoreSpaces(render.part); }); -//console.log(pattern.render()); it("Should render Svg text", () => { let pattern = new freesewing.Pattern();