From 608f02324816dd88ae47e9981547bdf1d7d25772 Mon Sep 17 00:00:00 2001 From: Rohit Paul <113459757+RohitPaul12345@users.noreply.github.com> Date: Wed, 2 Aug 2023 17:13:32 +0530 Subject: [PATCH] Update pointable.js --- test/pointable.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/pointable.js b/test/pointable.js index b838a29..7c854ac 100644 --- a/test/pointable.js +++ b/test/pointable.js @@ -1,8 +1,8 @@ describe('Pointable', function(){ describe("properties", function() { - var data = fakeFrame({fingers: 5, hands:1}) - var frame = createFrame(data); - var pointable = frame.hands[0].pointables[0]; + let data = fakeFrame({fingers: 5, hands:1}) + let frame = createFrame(data); + let pointable = frame.hands[0].pointables[0]; it('should have id', function() { assert.property(pointable, 'id') }) it('should have tool', function() { assert.equal(false, pointable.tool) })