1
0
Fork 0

fix(core): Removed debug statement in tests

This commit is contained in:
joostdecock 2022-08-07 15:17:02 +02:00
parent 6a8545d4b6
commit 6e2a0a33d9

View file

@ -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)
});