mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-15 17:03:59 +00:00
41 lines
1.2 KiB
TypeScript
41 lines
1.2 KiB
TypeScript
|
import {
|
||
|
alpha,
|
||
|
setupLogins,
|
||
|
searchForBetaCommunity,
|
||
|
followCommunity,
|
||
|
checkFollowedCommunities,
|
||
|
unfollowRemotes,
|
||
|
} from './shared';
|
||
|
|
||
|
beforeAll(async () => {
|
||
|
await setupLogins();
|
||
|
});
|
||
|
|
||
|
afterAll(async () => {
|
||
|
await unfollowRemotes(alpha);
|
||
|
});
|
||
|
|
||
|
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);
|
||
|
|
||
|
// Make sure the follow response went through
|
||
|
expect(follow.community.local).toBe(false);
|
||
|
expect(follow.community.name).toBe('main');
|
||
|
|
||
|
// Check it from local
|
||
|
let followCheck = await checkFollowedCommunities(alpha);
|
||
|
let remoteCommunityId = followCheck.communities.filter(
|
||
|
c => c.community_local == false
|
||
|
)[0].community_id;
|
||
|
expect(remoteCommunityId).toBeDefined();
|
||
|
|
||
|
// Test an unfollow
|
||
|
let unfollow = await followCommunity(alpha, false, remoteCommunityId);
|
||
|
expect(unfollow.community.local).toBe(false);
|
||
|
|
||
|
// Make sure you are unsubbed locally
|
||
|
let unfollowCheck = await checkFollowedCommunities(alpha);
|
||
|
expect(unfollowCheck.communities.length).toBeGreaterThanOrEqual(1);
|
||
|
});
|