You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
506 B
JavaScript
17 lines
506 B
JavaScript
module.exports = {
|
|
moduleFileExtensions: ["js", "jsx", "json", "vue"],
|
|
transform: {
|
|
"^.+\\.vue$": "vue-jest",
|
|
".+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$":
|
|
"jest-transform-stub",
|
|
"^.+\\.jsx?$": "babel-jest"
|
|
},
|
|
moduleNameMapper: {
|
|
"^@/(.*)$": "<rootDir>/src/$1"
|
|
},
|
|
snapshotSerializers: ["jest-serializer-vue"],
|
|
testMatch: [
|
|
"<rootDir>/(tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx))"
|
|
]
|
|
};
|