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.
28 lines
667 B
JavaScript
28 lines
667 B
JavaScript
const path = require('path')
|
|
|
|
module.exports = {
|
|
rootDir: path.resolve(__dirname, '../../'),
|
|
moduleFileExtensions: [
|
|
'js',
|
|
'json',
|
|
'vue'
|
|
],
|
|
moduleNameMapper: {
|
|
'^@/(.*)$': '<rootDir>/src/$1'
|
|
},
|
|
transform: {
|
|
'^.+\\.js$': '<rootDir>/node_modules/babel-jest',
|
|
'.*\\.(vue)$': '<rootDir>/node_modules/vue-jest'
|
|
},
|
|
snapshotSerializers: ['<rootDir>/node_modules/jest-serializer-vue'],
|
|
setupFiles: ['<rootDir>/test/unit/setup'],
|
|
mapCoverage: true,
|
|
coverageDirectory: '<rootDir>/test/unit/coverage',
|
|
collectCoverageFrom: [
|
|
'src/**/*.{js,vue}',
|
|
'!src/main.js',
|
|
'!src/router/index.js',
|
|
'!**/node_modules/**'
|
|
]
|
|
}
|