Trying again.

pull/1335/head
Dessalines 2020-12-17 14:59:53 -05:00
parent 5768a4eda7
commit 583808d5e7
1 changed files with 9 additions and 1 deletions

View File

@ -252,10 +252,12 @@ test('Remove a post from admin and community on different instance', async () =>
test('Remove a post from admin and community on same instance', async () => { test('Remove a post from admin and community on same instance', async () => {
await followBeta(alpha); await followBeta(alpha);
let postRes = await createPost(alpha, betaCommunity.id); let postRes = await createPost(alpha, betaCommunity.id);
expect(postRes.post).toBeDefined();
// Get the id for beta // Get the id for beta
let searchBeta = await searchPost(beta, postRes.post); let searchBeta = await searchPost(beta, postRes.post);
let betaPost = searchBeta.posts[0]; let betaPost = searchBeta.posts[0];
expect(betaPost).toBeDefined();
// The beta admin removes it (the community lives on beta) // The beta admin removes it (the community lives on beta)
let removePostRes = await removePost(beta, true, betaPost); let removePostRes = await removePost(beta, true, betaPost);
@ -278,6 +280,7 @@ test('Remove a post from admin and community on same instance', async () => {
}); });
test('Search for a post', async () => { test('Search for a post', async () => {
await unfollowRemotes(alpha);
let postRes = await createPost(alpha, betaCommunity.id); let postRes = await createPost(alpha, betaCommunity.id);
expect(postRes.post).toBeDefined(); expect(postRes.post).toBeDefined();
@ -287,10 +290,15 @@ test('Search for a post', async () => {
}); });
test('A and G subscribe to B (center) A posts, it gets announced to G', async () => { test('A and G subscribe to B (center) A posts, it gets announced to G', async () => {
await followBeta(alpha);
await followBeta(gamma);
let postRes = await createPost(alpha, betaCommunity.id); let postRes = await createPost(alpha, betaCommunity.id);
expect(postRes.post).toBeDefined();
let search2 = await searchPost(gamma, postRes.post); let search2 = await searchPostLocal(gamma, postRes.post);
expect(search2.posts[0].name).toBeDefined(); expect(search2.posts[0].name).toBeDefined();
await unfollowRemotes(alpha);
await unfollowRemotes(gamma);
}); });
test('Enforce site ban for federated user', async () => { test('Enforce site ban for federated user', async () => {