본문 바로가기
⚠️ 오류백과

[React test code 오류 ] Validation Error: Module /Users/{유저이름}/" "/" "/node_modules/jest-circus/runner.js in the testRunner option was not found.

by Tamii 2021. 8. 16.
반응형

문제 상황

Validation Error: Module /Users/{경로/경로/...}/style-test/node_modules/jest-circus/runner.js in the testRunner option was not found. <rootDir> is: /Users/1nk_0/{경로/경로...}: https://jestjs.io/docs/configuration.html

 

 local 환경에서 test 하던 것을 git 에 올려놓고 다른 local에서 repository를 clone 해와서 testcode를 돌리니 생긴 오류

 

 

 

해결 방법

 

검색해보니 다양한 원인이 이었지만, 나의 경우에는 

 

package.json

 "testRunner": "/Users/1nk_0/{경로/경로...}/node_modules/jest-circus/runner.js",

package.json 내의 testRunner 경로가 이전의 local 환경과 달라서 생긴 문제였다.

이 경로를 현재 local의 node_modules 위치로 변경해주니  test code 정상 작동 완료!

 

 

그 외 문제는 🔗 module test Runner issue 를 보고 해결하면 될 것 같다.

 

댓글