22.10.28 21:31 작성
·
2K
5
혹시나 에러가 나신다면,
package.json폴더에
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --transformIgnorePatterns \"node_modules/(?!axios)/\"",
"eject": "react-scripts eject"
},
로 변경 후 test를 종료 후 재 실행시키면 됩니다.
방법은 test에서 직접 스크립트 수정하거나 jest.config.js파일을 만들어 moduleNameMapper을 사용하시면 됩니다!
참고
https://stackoverflow.com/questions/73958968/cannot-use-import-statement-outside-a-module-with-axios
https://jestjs.io/docs/configuration#modulenamemapper-objectstring-string--arraystring
답변 5
0
0
0
0
0