Files
UUI/jest.config.js
2020-11-24 22:16:50 +08:00

14 lines
358 B
JavaScript

module.exports = {
preset: 'ts-jest',
testEnvironment: 'jsdom',
testMatch: [
'**/tests/**/*.test.ts',
'**/tests/**/*.test.tsx',
],
transform: {
"^.+\\.js$": "babel-jest",
"^.+\\.(ts|tsx)$": "ts-jest",
"^.+\\.svg$": "jest-svg-transformer"
},
transformIgnorePatterns: ["<rootDir>/node_modules/(?!(lodash-es|other-es-lib))"]
};