[Error] jest 실행 오류

sooyoung choi·2023년 12월 1일
1

Error log

목록 보기
5/9
post-thumbnail

jest error

jest 설치 후 test 진행하려는데 생긴 오류
내가 건드리지 않은 곳에 SyntaxError가 나서 검색해본 결과
package.json 에서 파일의 경로가 제대로 되어있지 않아서 생긴 오류였다.

수정 전 package.json

{
...
  "main": "index.js",
  "license": "MIT",
  "type": "module",
  "scripts": {
    "test": "node --experimental-vm-modules node_modules/.bin/jest"
  },
...
}

"test": "node --experimental-vm-modules node_modules/.bin/jest" 해당 경로로 jest.js 파일을 찾아내지 못해 생긴 오류였다.

수정 후 package.json

{
 	"scripts": {
    	"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js"
 	 },
}

오류 해결 ㅎㅎ

2개의 댓글

comment-user-thumbnail
2023년 12월 2일

감사여

1개의 답글