misskey/packages/backend/test-federation
anatawa12 666f78e676
enable and fix no-unused-vars and no-async-promise-executor (#17070)
* dev: set --no-bail for lint task

* lint: enable no-async-promise-executor lint and fix them

* lint: enable no-unused-vars with allowing _ prefix

* lint: fix semi
2026-01-08 11:49:12 +09:00
..
.config refactor(backend): 変換後.config.jsonに統一するように+修正など (#16929) 2025-12-04 16:49:25 +09:00
test enable and fix no-unused-vars and no-async-promise-executor (#17070) 2026-01-08 11:49:12 +09:00
.gitignore test(backend): add federation test (#14582) 2024-10-15 13:37:00 +09:00
README.md chore(workflow): use `node-version-file` instead of hardcoded `node-version` (#15658) 2025-05-04 14:14:09 +09:00
compose.a.yml Update PostgreSQL volume mount paths for PostgreSQL 18 (#16986) 2025-12-14 11:32:42 +09:00
compose.b.yml Update PostgreSQL volume mount paths for PostgreSQL 18 (#16986) 2025-12-14 11:32:42 +09:00
compose.override.yaml test(backend): add federation test (#14582) 2024-10-15 13:37:00 +09:00
compose.tpl.yml Minify backend (#17054) 2026-01-05 20:56:52 +09:00
compose.yml feat: use tsgo where capable (#16984) 2025-12-22 16:52:05 +09:00
daemon.ts test(backend): add federation test (#14582) 2024-10-15 13:37:00 +09:00
eslint.config.js test(backend): add federation test (#14582) 2024-10-15 13:37:00 +09:00
setup.sh refactor(backend): 変換後.config.jsonに統一するように+修正など (#16929) 2025-12-04 16:49:25 +09:00
tsconfig.json enhance(backend): pugをやめ、JSXベースのテンプレートに変更 (#16908) 2025-12-01 18:36:55 +09:00

README.md

test-federation

Test federation between two Misskey servers: a.test and b.test.

Before testing, you need to build the entire project, and change working directory to here:

pnpm build
cd packages/backend/test-federation

First, you need to start servers by executing following commands:

bash ./setup.sh
NODE_VERSION=22 docker compose up --scale tester=0

Then you can run all tests by a following command:

NODE_VERSION=22 docker compose run --no-deps --rm tester

For testing a specific file, run a following command:

NODE_VERSION=22 docker compose run --no-deps --rm tester -- pnpm -F backend test:fed packages/backend/test-federation/test/user.test.ts