programing

변환 옵션에서 /node_modules/vue-jest 모듈을 찾을 수 없습니다.

copyandpastes 2022. 7. 4. 23:41
반응형

변환 옵션에서 /node_modules/vue-jest 모듈을 찾을없습니다.

제가 실수를 해서 당신의 도움이 필요해요.이 질문을 봐주셔서 감사합니다.

내 상황:프로젝트를 위해 Drone CI 툴을 설정하고 있으며, drone.yml에서 유닛 테스트를 실행할 때 이 툴이 표시됩니다.

Validation Error:

  Module <rootDir>/node_modules/vue-jest in the transform option was not found.

  Configuration Documentation:
  https://jestjs.io/docs/configuration.html

여기 제 것이 있습니다.jest.conf.js

transform: {
    "^.+\\.js$": "babel-jest",
    ".*\\.vue$": "<rootDir>/node_modules/vue-jest"
  },

내가 시도한 것:

  1. 제거한다.<rootDir>/node_modules/하지만 또 다른 오류가 발생했습니다.Module vue-jest in the transform option was not found.그래서 나는 그것이 올바른 해결책이 아니라고 생각한다.
npm install --save-dev vue-jest

테스트를 재실행합니다.

언급URL : https://stackoverflow.com/questions/53920696/module-rootdir-node-modules-vue-jest-in-the-transform-option-was-not-found

반응형