mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-06 03:57:56 +08:00
14 lines
415 B
JavaScript
14 lines
415 B
JavaScript
module.exports = {
|
|
preset: '@vue/cli-plugin-unit-jest/presets/typescript-and-babel',
|
|
transform: {
|
|
'^.+\\.vue$': 'vue-jest',
|
|
},
|
|
moduleNameMapper: {
|
|
'^@src/(.*)$': '<rootDir>/src/$1',
|
|
'^@tests/(.*)$': '<rootDir>/tests/$1',
|
|
},
|
|
collectCoverage: true,
|
|
transformIgnorePatterns: ['/node_modules/(?!lodash-es/.*)'],
|
|
collectCoverageFrom: ['src/views/*.{ts,vue}', 'src/components/*.{ts,vue}'],
|
|
};
|