element-plus/jest.config.js

23 lines
738 B
JavaScript
Raw Normal View History

2020-07-24 16:44:56 +08:00
module.exports = {
globals: {
// work around: https://github.com/kulshekhar/ts-jest/issues/748#issuecomment-423528659
'ts-jest': {
diagnostics: {
ignoreCodes: [151001],
},
},
},
testPathIgnorePatterns: ['/node_modules/', 'dist'],
2021-09-26 01:29:07 +08:00
modulePathIgnorePatterns: ['/node_modules/', 'dist'],
2020-07-24 16:44:56 +08:00
testEnvironment: 'jsdom',
transform: {
// Doesn't support jsx/tsx since sucrase doesn't support Vue JSX
'\\.(j|t)s$': '@sucrase/jest-plugin',
'^.+\\.vue$': 'vue-jest',
2020-07-24 16:44:56 +08:00
},
2020-10-27 16:52:43 +08:00
moduleFileExtensions: ['ts', 'tsx', 'js', 'json'],
// u can change this option to a more specific folder for test single component or util when dev
// for example, ['<rootDir>/packages/input']
roots: ['<rootDir>'],
2020-07-24 16:44:56 +08:00
}