diff options
author | 2023-10-16 16:02:11 -0700 | |
---|---|---|
committer | 2023-10-16 16:02:11 -0700 | |
commit | 8c580e67645d9718960f930849cbd1841057d7c5 (patch) | |
tree | c8ff247d5c12648e7eb3f256a08f052deca6dcb0 | |
parent | c5354951bacb9efee26683d1be83177443e0d784 (diff) | |
download | bun-8c580e67645d9718960f930849cbd1841057d7c5.tar.gz bun-8c580e67645d9718960f930849cbd1841057d7c5.tar.zst bun-8c580e67645d9718960f930849cbd1841057d7c5.zip |
Fix formatting
-rw-r--r-- | test/js/bun/spawn/bun-ipc-child-respond.js | 7 | ||||
-rw-r--r-- | test/js/bun/spawn/bun-ipc-child.js | 2 |
2 files changed, 4 insertions, 5 deletions
diff --git a/test/js/bun/spawn/bun-ipc-child-respond.js b/test/js/bun/spawn/bun-ipc-child-respond.js index 5cf3ce97f..7b6d86ef2 100644 --- a/test/js/bun/spawn/bun-ipc-child-respond.js +++ b/test/js/bun/spawn/bun-ipc-child-respond.js @@ -1,4 +1,3 @@ - -process.on("message", (message) => { - process.send("pong:" + message); -});
\ No newline at end of file +process.on("message", message => { + process.send("pong:" + message); +}); diff --git a/test/js/bun/spawn/bun-ipc-child.js b/test/js/bun/spawn/bun-ipc-child.js index 5bad9f49a..664224a50 100644 --- a/test/js/bun/spawn/bun-ipc-child.js +++ b/test/js/bun/spawn/bun-ipc-child.js @@ -1 +1 @@ -process.send("hello");
\ No newline at end of file +process.send("hello"); |