From 60c86d1f70587dbf1a4e119748ffbca696a5c058 Mon Sep 17 00:00:00 2001 From: Jason Stallings Date: Sat, 24 Oct 2015 21:47:29 -0500 Subject: [PATCH] Remove logging. --- test/mouse.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/mouse.js b/test/mouse.js index 06d63fb9..c325e76c 100644 --- a/test/mouse.js +++ b/test/mouse.js @@ -19,8 +19,6 @@ test('Move the mouse.', function(t) lastKnownPos = robot.moveMouse(0, 0); t.ok(robot.moveMouse(100, 100), 'successfully moved the mouse.'); currentPos = robot.getMousePos(); - console.log("mousepos.x: " + currentPos.x); t.ok(currentPos.x === 100, 'mousepos.x is correct.'); - console.log("mousepos.y: " + currentPos.y); t.ok(currentPos.y === 100, 'mousepos.y is correct.'); });