element-plus/jest.config.js

17 lines
405 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],
},
},
},
testEnvironment: 'jsdom',
transform: {
'^.+\\.vue$': 'vue-jest',
2020-07-30 23:27:08 +08:00
'^.+\\.(t|j)sx?$': ['@swc-node/jest'],
2020-07-24 16:44:56 +08:00
},
moduleFileExtensions: ['vue', 'json', 'ts', 'tsx', 'js', 'json'],
2020-07-24 16:44:56 +08:00
}