Skip to content

Commit 60c86d1

Browse files
committed
Remove logging.
1 parent 637feed commit 60c86d1

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

test/mouse.js

-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ test('Move the mouse.', function(t)
1919
lastKnownPos = robot.moveMouse(0, 0);
2020
t.ok(robot.moveMouse(100, 100), 'successfully moved the mouse.');
2121
currentPos = robot.getMousePos();
22-
console.log("mousepos.x: " + currentPos.x);
2322
t.ok(currentPos.x === 100, 'mousepos.x is correct.');
24-
console.log("mousepos.y: " + currentPos.y);
2523
t.ok(currentPos.y === 100, 'mousepos.y is correct.');
2624
});

0 commit comments

Comments
 (0)