Adding unfollows.

pull/1335/head
Dessalines 3 years ago
parent 6cc148f6a6
commit 5c266302c5

@ -63,14 +63,13 @@ steps:
- mv target/x86_64-unknown-linux-musl/debug/lemmy_server target/lemmy_server
- name: run federation tests
image: node:15.4.0
image: node:15-alpine3.12
environment:
LEMMY_DATABASE_URL: postgres://lemmy:password@database:5432
DO_WRITE_HOSTS_FILE: 1
commands:
- ls -la target/lemmy_server
# - apk add bash curl postgresql-client
- apt-get update && apt-get install -y postgresql postgresql-contrib
- apk add bash curl postgresql-client
- bash api_tests/prepare-drone-federation-test.sh
- cd api_tests/
- yarn

@ -35,14 +35,19 @@ beforeAll(async () => {
await setupLogins();
let search = await searchForBetaCommunity(alpha);
betaCommunity = search.communities[0];
await unfollows();
});
afterAll(async () => {
await unfollows();
});
async function unfollows() {
await unfollowRemotes(alpha);
await unfollowRemotes(gamma);
await unfollowRemotes(delta);
await unfollowRemotes(epsilon);
});
}
function assertPostFederation(
postOne: Post,

Loading…
Cancel
Save