We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66b31b6 commit 84edc0cCopy full SHA for 84edc0c
test/mouse.js
@@ -19,6 +19,8 @@ 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("lastKnownPos: " + lastKnownPos);
23
+ console.log("currentPos.x: " + currentPos.x + " currentPos.y: " + currentPos.y);
24
t.ok(currentPos.x === 100, 'mousepos.x is correct.');
25
t.ok(currentPos.y === 100, 'mousepos.y is correct.');
26
});
0 commit comments