misskey/packages/backend/test-federation
syuilo 24bd150967
refactor(backend): 変換後.config.jsonに統一するように+修正など (#16929)
* wip

* Update config.ts

* wip

* convertは元ファイルを変更するようなニュアンスを若干感じるのでcompileに改名

* wip

* Update package.json

* Revert "Update package.json"

This reverts commit e5c2802316.

* wip

* wip

* 謎

* clean up

* wip

* wip

* Revert "wip"

This reverts commit 3aa25ac7cf.

* wip

* wip

* Update dummy.yml

* wip

* Update compile_config.js

* Update compile_config.js

* wip

* Revert "wip"

This reverts commit fd78e097c6.

* Update dummy.yml

* Update compile_config.js
2025-12-04 16:49:25 +09:00
..
.config refactor(backend): 変換後.config.jsonに統一するように+修正など (#16929) 2025-12-04 16:49:25 +09:00
test refactor(frontend): フロントエンドの型エラー解消(途中まで) (#16539) 2025-09-13 08:33:14 +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 refactor(backend): 変換後.config.jsonに統一するように+修正など (#16929) 2025-12-04 16:49:25 +09:00
compose.b.yml refactor(backend): 変換後.config.jsonに統一するように+修正など (#16929) 2025-12-04 16:49:25 +09:00
compose.override.yaml test(backend): add federation test (#14582) 2024-10-15 13:37:00 +09:00
compose.tpl.yml refactor(backend): 変換後.config.jsonに統一するように+修正など (#16929) 2025-12-04 16:49:25 +09:00
compose.yml refactor(backend): 変換後.config.jsonに統一するように+修正など (#16929) 2025-12-04 16:49:25 +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