test(convex): update leaderboard page size expectation

This commit is contained in:
Vincent Koc
2026-05-02 23:45:27 -07:00
parent 2d42c3d57a
commit 86f8aa88af
+1 -1
View File
@@ -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);
});