We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3043db2 commit cf93363Copy full SHA for cf93363
test/mouse.js
@@ -5,7 +5,6 @@ var lastKnownPos, currentPos;
5
test('Get the initial mouse position.', function(t)
6
{
7
t.plan(3);
8
- robot.moveMouse(0, 0);
9
t.ok(lastKnownPos = robot.getMousePos(), 'successfully retrieved mouse position.');
10
t.ok(lastKnownPos.x !== undefined, 'mousepos.x is a valid value.');
11
t.ok(lastKnownPos.y !== undefined, 'mousepos.y is a valid value.');
@@ -14,6 +13,7 @@ test('Get the initial mouse position.', function(t)
14
13
test('Move the mouse.', function(t)
15
16
+ lastKnownPos = robot.moveMouse(0, 0);
17
t.ok(robot.moveMouse(100, 100), 'successfully moved the mouse.');
18
currentPos = robot.getMousePos();
19
t.ok(currentPos.x !== lastKnownPos.x, 'mousepos.x has changed.');
0 commit comments