From f36d51d385e4348375de2b7c09e2bf003be16dae Mon Sep 17 00:00:00 2001 From: Wyatt Alt Date: Fri, 21 Aug 2026 23:43:26 -0700 Subject: [PATCH] test(nodejs): give the multivector index test a realistic timeout Index build plus two searches runs right at Jest's 5s default on CI macs and flakes when suite parallelism contends for cores. --- nodejs/__test__/table.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodejs/__test__/table.test.ts b/nodejs/__test__/table.test.ts index 80c50f1ac..0f6ed3615 100644 --- a/nodejs/__test__/table.test.ts +++ b/nodejs/__test__/table.test.ts @@ -2953,7 +2953,7 @@ describe("column name options", () => { .limit(10) .toArray(); expect(results2.length).toBe(10); - }); + }, 30_000); }); describe("when creating an empty table", () => {