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

@@ -30,7 +30,7 @@ This document outlines the development guidelines and best practices for our Typ
- **Testing**
- Write unit tests for all business logic
- Aim for high test coverage (at least 80%)
- Use Jest or Mocha for testing frameworks
- Use Vitest as the testing framework
- Implement integration tests for critical paths
- **Build Process**