]> Untitled Git - lemmy.git/commitdiff
Trying to fix post test again.
authorDessalines <tyhou13@gmx.com>
Sat, 12 Dec 2020 15:28:28 +0000 (10:28 -0500)
committerDessalines <tyhou13@gmx.com>
Sat, 12 Dec 2020 15:28:28 +0000 (10:28 -0500)
api_tests/src/post.spec.ts

index 9b2954b1d45d35d154ff75e219b00c98a24b39fe..f876fa7a058385bb50a3f85e4c4dcebd81208374 100644 (file)
@@ -20,6 +20,7 @@ import {
   getPost,
   unfollowRemotes,
   delay,
+  longDelay,
   searchForUser,
   banUserFromSite,
   searchPostLocal,
@@ -35,7 +36,7 @@ beforeAll(async () => {
   await followBeta(gamma);
   await followBeta(delta);
   await followBeta(epsilon);
-  await delay();
+  await longDelay();
 });
 
 afterAll(async () => {
@@ -175,6 +176,7 @@ test('Sticky a post', async () => {
   let gammaPost = searchGamma.posts[0];
   await delay();
   let gammaTrySticky = await stickyPost(gamma, true, gammaPost);
+  await delay();
   let searchBeta3 = await searchPost(beta, postRes.post);
   let betaPost3 = searchBeta3.posts[0];
   expect(gammaTrySticky.post.stickied).toBe(true);