aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/bun.js/socket/socket.test.ts7
1 files changed, 1 insertions, 6 deletions
diff --git a/test/bun.js/socket/socket.test.ts b/test/bun.js/socket/socket.test.ts
index 200f9528c..3c41c96f7 100644
--- a/test/bun.js/socket/socket.test.ts
+++ b/test/bun.js/socket/socket.test.ts
@@ -25,12 +25,7 @@ it("should keep process alive only when active", async () => {
lines.filter(function (line) {
return line.startsWith("[Client]");
}),
- ).toEqual([
- "[Client] OPENED",
- "[Client] GOT response",
- "[Client] ENDED",
- "[Client] CLOSED",
- ]);
+ ).toEqual(["[Client] OPENED", "[Client] GOT response", "[Client] CLOSED"]);
});
it("listen() should throw connection error for invalid host", () => {