Skip to content

Commit b16e7d4

Browse files
increase timeout
1 parent fb770bc commit b16e7d4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/node-cluster.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ import assert from "node:assert";
44
import { times } from "./util.ts";
55

66
describe("@socket.io/postgres-adapter within Node.js cluster", () => {
7-
it("should work", (done) => {
7+
it("should work", function (done) {
8+
this.timeout(5000);
89
const PRIMARY_COUNT = 3;
910
const partialDone = times(PRIMARY_COUNT, done);
1011

@@ -17,5 +18,5 @@ describe("@socket.io/postgres-adapter within Node.js cluster", () => {
1718
partialDone();
1819
});
1920
}
20-
})
21+
});
2122
});

0 commit comments

Comments
 (0)