mirror of
https://github.com/immich-app/immich.git
synced 2026-07-11 21:05:58 +08:00
837 B
837 B
Testing
Server
Unit tests
Unit are run by calling npm run test from the server directory.
End to end tests
The backend has two end-to-end test suites that can be called with the following two commands from the project root directory:
make server-e2e-apimake server-e2e-jobs
API (e2e)
The API e2e tests spin up a test database and execute http requests against the server, validating the expected response codes and functionality for API endpoints.
Jobs (e2e)
The Jobs e2e tests spin up a docker test environment where thumbnail generation, library scanning, and other job workflows are validated.
:::note Note that there is a bug in nodejs <20.8 that causes segmentation faults when running these tests. If you run into segfaults, ensure you are using at least version 20.8. ::: /follow