]> Untitled Git - lemmy.git/commitdiff
Trying again.
authorDessalines <tyhou13@gmx.com>
Thu, 17 Dec 2020 19:36:22 +0000 (14:36 -0500)
committerDessalines <tyhou13@gmx.com>
Thu, 17 Dec 2020 19:36:22 +0000 (14:36 -0500)
api_tests/src/post.spec.ts

index f44bd5862c77686300a0c354f596718ffe514470..67fb6c3bfe985a42b977cf5f3bc0c7222678e881 100644 (file)
@@ -250,14 +250,13 @@ test('Remove a post from admin and community on different instance', async () =>
 });
 
 test('Remove a post from admin and community on same instance', async () => {
+  await followBeta(alpha);
   let postRes = await createPost(alpha, betaCommunity.id);
 
   // Get the id for beta
   let searchBeta = await searchPost(beta, postRes.post);
   let betaPost = searchBeta.posts[0];
 
-  await followBeta(alpha);
-
   // The beta admin removes it (the community lives on beta)
   let removePostRes = await removePost(beta, true, betaPost);
   expect(removePostRes.post.removed).toBe(true);
@@ -280,6 +279,8 @@ test('Remove a post from admin and community on same instance', async () => {
 
 test('Search for a post', async () => {
   let postRes = await createPost(alpha, betaCommunity.id);
+  expect(postRes.post).toBeDefined();
+
   let searchBeta = await searchPost(beta, postRes.post);
 
   expect(searchBeta.posts[0].name).toBeDefined();