Skip to content

Commit 6e252d7

Browse files
author
Alex Gogl
committed
add jest config
1 parent 31694d4 commit 6e252d7

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

jest.config.js

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
module.exports = {
2+
moduleFileExtensions: ["js", "json", "vue"],
3+
watchman: false,
4+
moduleNameMapper: {
5+
"^~/(.*)$": "<rootDir>/$1",
6+
"^~~/(.*)$": "<rootDir>/$1",
7+
"^@/(.*)$": "<rootDir>/$1"
8+
},
9+
transform: {
10+
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
11+
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
12+
},
13+
snapshotSerializers: ["<rootDir>/node_modules/jest-serializer-vue"],
14+
collectCoverage: true,
15+
collectCoverageFrom: [
16+
"<rootDir>/components/**/*.vue",
17+
"<rootDir>/pages/*.vue"
18+
]
19+
};
20+

0 commit comments

Comments
 (0)