refactor(testing): migrate from Jest to Vitest for testing framework

This commit is contained in:
Naoki Oketani
2025-05-02 14:03:34 +00:00
parent a898de739e
commit 2564984eab
11 changed files with 3190 additions and 467 deletions

View File

@@ -14,3 +14,25 @@
### GitHub REST API v3
- https://developer.github.com/v3/
## Development Instructions
### Running Tests
This project uses [Vitest](https://vitest.dev/) for testing. To run the tests, use the following command:
```bash
npm run test
```
Vitest will execute all test files and provide a detailed report of the results.
### Generating Coverage Reports
To generate a test coverage report, use the following command:
```bash
npm run test:coverage
```
The coverage report will be available in the `coverage` directory.