diff --git a/app/ecs/ecs.test.js b/app/ecs/ecs.test.js index 1ac7213..e51b03d 100644 --- a/app/ecs/ecs.test.js +++ b/app/ecs/ecs.test.js @@ -253,9 +253,7 @@ test('adds components to and remove components from entities when ticking system }; } tick() { - console.log(ecs.get(1).Foo) this.removeComponents(1, ['Foo']); - console.log(ecs.get(1).Foo) } }, }, diff --git a/app/websocket.js b/app/websocket.js index 9544bac..6ae2d8c 100644 --- a/app/websocket.js +++ b/app/websocket.js @@ -50,7 +50,6 @@ class SocketServer extends Server { } async readAsset(path) { const url = new URL(path, 'https://localhost:3000') - console.log({url}); if ('production' === process.env.NODE_ENV) { url.protocol = 'http:'; }