aboutsummaryrefslogtreecommitdiff
path: root/tests/socket_fetch.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/socket_fetch.js')
-rw-r--r--tests/socket_fetch.js8
1 files changed, 8 insertions, 0 deletions
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);})