mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-06 03:57:56 +08:00
16 lines
515 B
JavaScript
16 lines
515 B
JavaScript
module.exports = {
|
|
preset: '@vue/cli-plugin-unit-jest/presets/typescript-and-babel',
|
|
transform: {
|
|
'^.+\\.vue$': 'vue-jest',
|
|
},
|
|
transformIgnorePatterns: ['/node_modules/(?!lodash-es|vue)'],
|
|
collectCoverage: true,
|
|
moduleNameMapper: {
|
|
'^@tmagic/(.*)$': '<rootDir>/packages/$1/src/index.ts',
|
|
'^@editor/(.*)$': '<rootDir>/packages/editor/src/$1',
|
|
'^lodash-es$': 'lodash',
|
|
},
|
|
moduleFileExtensions: ['js', 'jsx', 'json', 'vue', 'ts', 'tsx'],
|
|
testPathIgnorePatterns: ['/magic-admin/'],
|
|
};
|