[P-Reinforce] 2026-04-20: 15-Level React Mastery Curriculum Integrated

This commit is contained in:
2026-04-20 16:35:21 +09:00
parent d4bb35e35f
commit 5297ccb065
16 changed files with 295 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
---
title: 리액트 애플리케이션 테스트 전략
category: Software Architecture
tags: [Testing, Vitest, RTL, Unit Test, QA]
created: 2026-04-20
---
# 리액트 애플리케이션 테스트 전략
## 🧪 테스트 피라미드
- **Unit Test**: 개별 유틸리티/함수 검증.
- **Integration Test**: 컴포넌트 간 상호작용 및 UI 흐름 검증.
## 🛠️ 도구
- **Vitest**: 고성능 테스트 러너.
- **React Testing Library**: 사용자 중심의 DOM 테스트 지향.
## 🔗 연결된 지식
- [[System_Debugging_Protocol]]
- [[Reliability_Safety_First]]