From b2ae69f96c0800ac1264d417c2bc50eeabff279f Mon Sep 17 00:00:00 2001
From: Nutomic <me@nutomic.com>
Date: Tue, 12 Dec 2023 14:54:54 +0100
Subject: [PATCH] Set explicit limit for getPosts/getComments in tests (#4250)

* Set explicit limit for getPosts/getComments in tests

* pretier
---
 api_tests/src/community.spec.ts | 2 +-
 api_tests/src/shared.ts         | 2 ++
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/api_tests/src/community.spec.ts b/api_tests/src/community.spec.ts
index b4a58bb7b..fc5f347b6 100644
--- a/api_tests/src/community.spec.ts
+++ b/api_tests/src/community.spec.ts
@@ -249,7 +249,7 @@ test("Admin actions in remote community are not federated to origin", async () =
   expect(gammaPost2.post_view.creator_banned_from_community).toBe(false);
 });
 
-test("moderator view", async () => {
+test.only("moderator view", async () => {
   // register a new user with their own community on alpha and post to it
   let otherUser = await registerUser(alpha, alphaUrl);
 
diff --git a/api_tests/src/shared.ts b/api_tests/src/shared.ts
index 167804e94..d2193d90d 100644
--- a/api_tests/src/shared.ts
+++ b/api_tests/src/shared.ts
@@ -329,6 +329,7 @@ export async function getComments(
     post_id: post_id,
     type_: listingType,
     sort: "New",
+    limit: 50,
   };
   return api.getComments(form);
 }
@@ -793,6 +794,7 @@ export function getPosts(
 ): Promise<GetPostsResponse> {
   let form: GetPosts = {
     type_: listingType,
+    limit: 50,
   };
   return api.getPosts(form);
 }
-- 
GitLab