]> Untitled Git - lemmy.git/blobdiff - api_tests/src/follow.spec.ts
Changing unit tests to api v2.
[lemmy.git] / api_tests / src / follow.spec.ts
index e0389f8715b076d1a8fd13e796cc54f1dde65f3b..8917efc02414b2835374412bf691365a044a6e8f 100644 (file)
@@ -20,24 +20,28 @@ afterAll(async () => {
 
 test('Follow federated community', async () => {
   let search = await searchForBetaCommunity(alpha); // TODO sometimes this is returning null?
-  let follow = await followCommunity(alpha, true, search.communities[0].id);
+  let follow = await followCommunity(
+    alpha,
+    true,
+    search.communities[0].community.id
+  );
 
   // Make sure the follow response went through
-  expect(follow.community.local).toBe(false);
-  expect(follow.community.name).toBe('main');
+  expect(follow.community_view.community.local).toBe(false);
+  expect(follow.community_view.community.name).toBe('main');
   await longDelay();
 
   // Check it from local
   let followCheck = await checkFollowedCommunities(alpha);
   await delay();
-  let remoteCommunityId = followCheck.communities.filter(
-    c => c.community_local == false
-  )[0].community_id;
+  let remoteCommunityId = followCheck.communities.find(
+    c => c.community.local == false
+  ).community.id;
   expect(remoteCommunityId).toBeDefined();
 
   // Test an unfollow
   let unfollow = await followCommunity(alpha, false, remoteCommunityId);
-  expect(unfollow.community.local).toBe(false);
+  expect(unfollow.community_view.community.local).toBe(false);
   await delay();
 
   // Make sure you are unsubbed locally