We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afee8f6 commit b0be7f4Copy full SHA for b0be7f4
packages/postgres/src/mq.test.ts
@@ -34,6 +34,7 @@ test("PostgresMessageQueue", { skip: dbUrl == null }, async () => {
34
const listening = mq.listen((message: string) => {
35
messages.push(message);
36
}, { signal: controller.signal });
37
+ await delay(500); // prevent initialization race condition
38
const listening2 = mq2.listen((message: string) => {
39
40
0 commit comments