Skip to content

Commit

Permalink
Remove logging.
Browse files Browse the repository at this point in the history
  • Loading branch information
octalmage committed Oct 25, 2015
1 parent 637feed commit 60c86d1
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions test/mouse.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ test('Move the mouse.', function(t)
lastKnownPos = robot.moveMouse(0, 0);
t.ok(robot.moveMouse(100, 100), 'successfully moved the mouse.');
currentPos = robot.getMousePos();
console.log("mousepos.x: " + currentPos.x);
t.ok(currentPos.x === 100, 'mousepos.x is correct.');
console.log("mousepos.y: " + currentPos.y);
t.ok(currentPos.y === 100, 'mousepos.y is correct.');
});

0 comments on commit 60c86d1

Please sign in to comment.