[Vuejs]-JEST config testing node_module even if its disabled?

0👍

It seems extending jest.config.js solved the error above.

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

I now have a different error, but this is more Vue specific now.

Leave a comment