IT 언어/Error
[React] Multiple configurations found:
비둘기멋지게발차기
2024. 5. 2. 22:04
jest.config.ts와 jest.config.json 두 개의 파일을 만들고 npm test로 실행했더니,
프로젝트 내의 여러 개의 jest 구성이 있어서 발생한 에러 Multiple configurations found:
1. 해결 방법
- 둘 중 하나의 파일 삭제해서 npm test 재실행
- 둘 중 하나의 파일만 특정해서 실행
- 명령어(1) : npm test -- --config=jest.config.json
- 명령어(2) : npm test -- --config=jest.config.ts