Files
headless-recorder/jest.config.js
Maxi Gimenez 3504917c48 chore: move jest config to file (#93)
* chore: move jest config to file

* chore: add new line to the end of the file
2020-07-31 09:40:55 +02:00

15 lines
288 B
JavaScript

module.exports = {
moduleNameMapper: {
"^vue$": "vue/dist/vue.common.js"
},
moduleFileExtensions: [
"js",
"vue",
"json"
],
transform: {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/jest-vue-preprocessor"
}
}