From 86f8aa88af206ea2b8b07729a394b2ece8038b14 Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Sat, 2 May 2026 23:45:27 -0700 Subject: [PATCH] test(convex): update leaderboard page size expectation --- convex/leaderboards.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/convex/leaderboards.test.ts b/convex/leaderboards.test.ts index 45321891..308c8c34 100644 --- a/convex/leaderboards.test.ts +++ b/convex/leaderboards.test.ts @@ -74,7 +74,7 @@ describe("leaderboards.rebuildTrendingLeaderboardInternal", () => { expect(result).toEqual({ ok: true, count: 1 }); expect(runQuery).toHaveBeenCalledWith( expect.anything(), - expect.objectContaining({ cursor: null, limit: 5000 }), + expect.objectContaining({ cursor: null, limit: 1000 }), ); expect(runMutation).toHaveBeenCalledTimes(2); });