We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 637feed commit 60c86d1Copy full SHA for 60c86d1
test/mouse.js
@@ -19,8 +19,6 @@ test('Move the mouse.', function(t)
19
lastKnownPos = robot.moveMouse(0, 0);
20
t.ok(robot.moveMouse(100, 100), 'successfully moved the mouse.');
21
currentPos = robot.getMousePos();
22
- console.log("mousepos.x: " + currentPos.x);
23
t.ok(currentPos.x === 100, 'mousepos.x is correct.');
24
- console.log("mousepos.y: " + currentPos.y);
25
t.ok(currentPos.y === 100, 'mousepos.y is correct.');
26
});
0 commit comments