aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-01-12 12:08:11 -0800
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-01-12 12:08:11 -0800
commitbb5efb67ab28849a28d0d41939734dc6336c40c0 (patch)
treef15653fe5d78734eb1bdd64ddfcf7b4d13ba7f2c
parent4bac561184b5fb83511a69f353afc9ff075acc7e (diff)
downloadbun-bb5efb67ab28849a28d0d41939734dc6336c40c0.tar.gz
bun-bb5efb67ab28849a28d0d41939734dc6336c40c0.tar.zst
bun-bb5efb67ab28849a28d0d41939734dc6336c40c0.zip
Update socket.test.ts
-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", () => {