diff --git a/api_tests/src/post.spec.ts b/api_tests/src/post.spec.ts index 0e9276f93..f545754f7 100644 --- a/api_tests/src/post.spec.ts +++ b/api_tests/src/post.spec.ts @@ -285,14 +285,6 @@ test('Search for a post', async () => { expect(betaPost.post.name).toBeDefined(); }); -test('A and G subscribe to B (center) A posts, it gets announced to G', async () => { - let postRes = await createPost(alpha, betaCommunity.community.id); - expect(postRes.post_view.post).toBeDefined(); - - let betaPost = (await resolvePost(gamma, postRes.post_view.post)).post; - expect(betaPost.post.name).toBeDefined(); -}); - test('Enforce site ban for federated user', async () => { // create a test user let alphaUserJwt = await registerUser(alpha); @@ -378,6 +370,15 @@ test('Enforce community ban for federated user', async () => { expect(searchBeta2.posts[0]).toBeDefined(); }); + +test('A and G subscribe to B (center) A posts, it gets announced to G', async () => { + let postRes = await createPost(alpha, betaCommunity.community.id); + expect(postRes.post_view.post).toBeDefined(); + + let betaPost = (await resolvePost(gamma, postRes.post_view.post)).post; + expect(betaPost.post.name).toBeDefined(); +}); + test('Report a post', async () => { let betaCommunity = (await resolveBetaCommunity(beta)).community; let postRes = await createPost(beta, betaCommunity.community.id);