diff options
Diffstat (limited to 'test/bun.js/websocket-subprocess.ts')
-rw-r--r-- | test/bun.js/websocket-subprocess.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/bun.js/websocket-subprocess.ts b/test/bun.js/websocket-subprocess.ts index cf64f18ef..fd25b7fd5 100644 --- a/test/bun.js/websocket-subprocess.ts +++ b/test/bun.js/websocket-subprocess.ts @@ -2,7 +2,7 @@ const host = process.argv[2]; const ws = new WebSocket(host); -ws.onmessage = (message) => { +ws.onmessage = message => { if (message.data === "hello websocket") { ws.send("hello"); } else if (message.data === "timeout") { |