get-vue-jest-config.js 369 B

12345678910
  1. /**
  2. * This module extracts vue-jest relevant parts of a jest config
  3. *
  4. * @param {Object} jestConfig - a complete jest config object
  5. * @returns {Object} vueJestConfig - an object holding vue-jest specific configuration
  6. */
  7. module.exports = function getVueJestConfig (jestConfig) {
  8. return (jestConfig && jestConfig.globals && jestConfig.globals['vue-jest']) || {}
  9. }