diff options
author | Holden Rohrer <holden.rohrer@gmail.com> | 2019-12-18 16:35:13 -0500 |
---|---|---|
committer | Holden Rohrer <holden.rohrer@gmail.com> | 2019-12-18 16:35:13 -0500 |
commit | fae8f6b3bbb1fd18cd07c26673d454a8136c093f (patch) | |
tree | 564002acdf9cb737222d77831a8f5bf618ddb961 /tests | |
parent | 27edad92c3af494c24b0bddb052a5182e974027e (diff) |
tested and fixed socket.fetch/cursor
Diffstat (limited to 'tests')
-rw-r--r-- | tests/socket_cursor.js | 8 | ||||
-rw-r--r-- | tests/socket_fetch.js | 8 |
2 files changed, 16 insertions, 0 deletions
diff --git a/tests/socket_cursor.js b/tests/socket_cursor.js new file mode 100644 index 0000000..dc0ca7f --- /dev/null +++ b/tests/socket_cursor.js @@ -0,0 +1,8 @@ +// Tests Socket.cursor and Socket.on('cursor') + +socket = require('../socket'); + +world = new socket.Socket(); + +world.on('open', ()=>{world.cursor([22,23])}); +world.on('cursor', (locs, send)=>{console.log(locs,send)}); diff --git a/tests/socket_fetch.js b/tests/socket_fetch.js new file mode 100644 index 0000000..a613dc6 --- /dev/null +++ b/tests/socket_fetch.js @@ -0,0 +1,8 @@ +// Tests Socket.fetch and Socket.on('fetch') +const socket = require('../socket'); + +let world = new socket.Socket(); + +world.on('open', () => {world.fetch([[10,10,10,10]])}); + +world.on('fetch', (tiles) => {console.log(tiles);}) |