Skip to content

Commit

Permalink
Remove debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
yzrmn committed Aug 29, 2024
1 parent 0fd1a28 commit 02c376f
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions packages/redgeometry/tests/expect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,6 @@ export function expectToBeCloseEuler(
const eul2y = (eul2.y + tau) % tau;
const eul2z = (eul2.z + tau) % tau;

console.log(eul1x, eul2x);
console.log(eul1y, eul2y);
console.log(eul1z, eul2z);

expect(eul1x).toBeCloseTo(eul2x, numDigits ?? 15);
expect(eul1y).toBeCloseTo(eul2y, numDigits ?? 15);
expect(eul1z).toBeCloseTo(eul2z, numDigits ?? 15);
Expand Down

0 comments on commit 02c376f

Please sign in to comment.