# task-2051: InsuRo test_e2e_copilot_analyze_success 테스트 실패 수정

## 문제
`test_e2e_copilot_analyze_success` 테스트가 PRO_PLAN mock으로 맥스 전용 기능(`crm_ai_analysis`)에 접근하여 403 반환.
`require_feature("crm_ai_analysis")`가 맥스 플랜 이상에서만 허용하는데, 테스트 mock이 PRO_PLAN을 사용하기 때문.

## ★ 프로젝트: `/home/jay/projects/InsuRo/`

## 수정 내용
1. `test_e2e_copilot_analyze_success` 테스트 찾기:
   ```bash
   grep -rn "test_e2e_copilot_analyze_success" server/tests/
   ```
2. 해당 테스트의 mock 플랜을 PRO_PLAN → MAX_PLAN(맥스)으로 변경
   - 또는 PLAN_FEATURE_MAP에서 crm_ai_analysis의 최소 플랜 확인 후 적절한 플랜으로 mock 변경
3. 관련 mock 패턴 확인:
   ```bash
   grep -rn "PRO_PLAN\|MOCK_PLAN\|mock.*plan" server/tests/test_e2e*.py server/tests/test_main.py
   ```
4. 변경 후 해당 테스트만 실행하여 PASS 확인:
   ```bash
   cd server && python -m pytest tests/ -k "test_e2e_copilot_analyze_success" -v
   ```
5. 전체 테스트 회귀 확인:
   ```bash
   cd server && python -m pytest tests/ -x --tb=short
   ```

## 완료 시그니처
- [grep] `MAX_PLAN\|맥스\|max` @ 해당 테스트 파일 (mock 플랜이 맥스로 변경됨)
- [pytest] `test_e2e_copilot_analyze_success` PASS

## 검증 시나리오
1. `python -m pytest tests/ -k "test_e2e_copilot_analyze_success" -v` → PASS
2. `python -m pytest tests/ -x --tb=short` → 전체 PASS (0 failed)
3. `npm run build` → 빌드 성공

## 레벨
- normal

## 프로젝트
- insuro
