X-Git-Url: http://these/git/?a=blobdiff_plain;f=api_tests%2Fsrc%2Ffollow.spec.ts;h=75ec9f29f8c0e05292417af8ba005ecbd9ae2510;hb=9c3efe32e7b2ef7978b7957eac10691beb551dde;hp=65b7501226a150a2e34073158cd7edb4bf189c94;hpb=becb8b4f66bdacca23b0b169e07d845afcb3d204;p=lemmy.git diff --git a/api_tests/src/follow.spec.ts b/api_tests/src/follow.spec.ts index 65b75012..75ec9f29 100644 --- a/api_tests/src/follow.spec.ts +++ b/api_tests/src/follow.spec.ts @@ -19,7 +19,7 @@ afterAll(async () => { }); test('Follow federated community', async () => { - let betaCommunity = (await resolveBetaCommunity(alpha)).community; + let betaCommunity = (await resolveBetaCommunity(alpha)).community.unwrap(); let follow = await followCommunity( alpha, true, @@ -33,11 +33,11 @@ test('Follow federated community', async () => { // Check it from local let site = await getSite(alpha); - let remoteCommunityId = site.my_user.follows.find( + let remoteCommunityId = site.my_user.unwrap().follows.find( c => c.community.local == false ).community.id; expect(remoteCommunityId).toBeDefined(); - expect(site.my_user.follows.length).toBe(1); + expect(site.my_user.unwrap().follows.length).toBe(1); // Test an unfollow let unfollow = await followCommunity(alpha, false, remoteCommunityId); @@ -45,5 +45,5 @@ test('Follow federated community', async () => { // Make sure you are unsubbed locally let siteUnfollowCheck = await getSite(alpha); - expect(siteUnfollowCheck.my_user.follows.length).toBe(0); + expect(siteUnfollowCheck.my_user.unwrap().follows.length).toBe(0); });