Skip to content

Commit 6bdb4b0

Browse files
committed
fix(tests): increase timeout for multi-process tests to prevent rare timeouts
1 parent 54333ba commit 6bdb4b0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/multi-process.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ describe("Multi-Process Database Access", () => {
8383
expect(data.sum).toBe(4950); // Sum of 0-99
8484
});
8585
},
86-
getTestTimeout(10000),
86+
getTestTimeout(15000), // Multi-process test needs generous base timeout, we had rare timeouts in GHA with 10s
8787
);
8888

8989
test(
@@ -133,7 +133,7 @@ describe("Multi-Process Database Access", () => {
133133

134134
verifyDb.close();
135135
},
136-
getTestTimeout(10000),
136+
getTestTimeout(15000), // Multi-process test needs generous base timeout
137137
);
138138
});
139139

0 commit comments

Comments
 (0)