// Tests Socket.on('tileUpdate') const Socket = require('../socket'); main = new Socket(); main.on('tileUpdate', (send, source, tiles)=>{ // Should just print a log of any tile updates on the main world console.log(tiles); });