You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
561 B
18 lines
561 B
module.exports = {
|
|
moduleFileExtensions: ["js", "jsx", "json", "vue"],
|
|
transform: {
|
|
"^.+\\.vue$": "vue-jest",
|
|
".+\\.(css|styl|less|sass|scss|svg|png|jpg|ttf|woff|woff2)$":
|
|
"jest-transform-stub",
|
|
"^.+\\.(js|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))"
|
|
],
|
|
testURL: "http://localhost/",
|
|
transformIgnorePatterns: ["<rootDir>/node_modules/"]
|
|
};
|