jest.config.ts와 jest.config.json 두 개의 파일을 만들고 npm test로 실행했더니,

프로젝트 내의 여러 개의 jest 구성이 있어서 발생한 에러 Multiple configurations found:

 

 

 

1. 해결 방법

  1. 둘 중 하나의 파일 삭제해서 npm test 재실행
  2. 둘 중 하나의 파일만 특정해서 실행
    1. 명령어(1) : npm test -- --config=jest.config.json
    2. 명령어(2) : npm test -- --config=jest.config.ts

 

 

 

+ Recent posts