(doc) replace outdated reference to Jest with Vitest

This commit is contained in:
Valentyne Stigloher 2025-02-27 11:14:24 +01:00
parent 8bd7114921
commit 4c7832f5ea

View File

@ -97,7 +97,7 @@ SECRET=replaceThis
To work effectively with this project, it is recommended to configure these points in your editor: To work effectively with this project, it is recommended to configure these points in your editor:
- Integrating ESLint with auto-fixing on save (the formatting relies on it) - Integrating ESLint with auto-fixing on save (the formatting relies on it)
- Integrating Jest to easily view test results - Integrating Vitest to easily view test results
- Use `yaml` syntax highlighting for `.suml` files - Use `yaml` syntax highlighting for `.suml` files
- Link `locale/config.schema.json` to `locale/*/config.suml` for schema validation and type hints - Link `locale/config.schema.json` to `locale/*/config.suml` for schema validation and type hints
(the schema file is automatically generated by `locale/generateSchemas.ts` in `make install`) (the schema file is automatically generated by `locale/generateSchemas.ts` in `make install`)
@ -128,7 +128,7 @@ please make a remark in the MR / on Discord.
#### Unit tests #### Unit tests
We currently have Jest as a simple unit testing framework. We currently have Vitest as a simple unit testing framework.
While we dont require unit tests for new code, a well-designed test is greatly appreciated. While we dont require unit tests for new code, a well-designed test is greatly appreciated.
The coverage reports on the MR are only meant for information purposes, not as a call to cover lines at all costs. The coverage reports on the MR are only meant for information purposes, not as a call to cover lines at all costs.