diff --git a/test/mouse.js b/test/mouse.js index 1ec708bd..90598ad4 100644 --- a/test/mouse.js +++ b/test/mouse.js @@ -2,9 +2,10 @@ var test = require('tape'); var robot = require('..'); var lastKnownPos; -test('get the initial mouse position', function(t) { - t.plan(3); - t.ok(lastKnownPos = robot.getMousePos(), 'successfully retrieved mouse position'); - t.ok(lastKnownPos.x !== undefined, 'mousepos.x is a valid value'); - t.ok(lastKnownPos.y !== undefined, 'mousepos.y is a valid value'); -}); \ No newline at end of file +test('Get the initial mouse position.', function(t) +{ + t.plan(3); + t.ok(lastKnownPos = robot.getMousePos(), 'successfully retrieved mouse position.'); + t.ok(lastKnownPos.x !== undefined, 'mousepos.x is a valid value.'); + t.ok(lastKnownPos.y !== undefined, 'mousepos.y is a valid value.'); +});