From: Dessalines Date: Fri, 18 Dec 2020 02:10:20 +0000 (-0500) Subject: Adding unfollows. X-Git-Url: http://these/git/%22https:/image.com/static/readmes/README.es.md?a=commitdiff_plain;h=5c266302c518554e5a6ecefe12e0202aa7a0a9f7;p=lemmy.git Adding unfollows. --- diff --git a/.drone.yml b/.drone.yml index 5e3ed48e..ec0d69fe 100644 --- a/.drone.yml +++ b/.drone.yml @@ -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 diff --git a/api_tests/src/post.spec.ts b/api_tests/src/post.spec.ts index d90cc99c..98ecd920 100644 --- a/api_tests/src/post.spec.ts +++ b/api_tests/src/post.spec.ts @@ -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,