フォルダ分け

This commit is contained in:
takejohn 2025-01-17 23:58:27 +09:00
parent 859089b168
commit 059bdd9ecd
No known key found for this signature in database
GPG Key ID: F1A5A9BF81BB4892
3 changed files with 6 additions and 1 deletions

View File

@ -224,7 +224,12 @@ pnpm --filter frontend test
pnpm --filter misskey-js test
```
Backend tests require manual preparation of servers. See the next section for more on this.
Backend tests require manual preparation of servers. See the [Backend](#backend) section for more on this.
### Frontend
There are two types of tests for UI components:
- Tests dealing with the DOM using Testing Library: [`/packages/frontend/test/dom`](/packages/frontend/test/dom)
- Unit tests for Vue components using Vue Test Utils: [`/packages/frontend/test/vue`](/packages/frontend/test/vue)
### Backend
There are three types of test codes for the backend: