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
'IT 언어 > Error' 카테고리의 다른 글
[STS] Port 8080 required by Tomcat v9.0 Server at localhost is already in use. (for 💻) (0) | 2024.05.19 |
---|---|
[React] 'useState' is not defined 에러 (0) | 2024.05.06 |
[STS] cannot be resolved to a type (import 에러) (for 💻) (0) | 2024.04.23 |
[STS] TypeError: $.ajax is not a function (0) | 2024.04.20 |
[Git] ![rejected] master -> master (fetch first) (Mac 💻) (0) | 2024.04.18 |