9 lines
195 B
JavaScript
9 lines
195 B
JavaScript
module.exports = {
|
|
preset: "@vue/cli-plugin-unit-jest",
|
|
transform: {
|
|
"^.+\\.vue$": "vue-jest",
|
|
},
|
|
testMatch : [
|
|
"**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)"
|
|
],
|
|
};
|