Files
deployment-portal-fe/jest.config.js
2024-02-14 15:53:40 +05:30

13 lines
445 B
JavaScript

module.exports = {
testMatch: ['**/__tests__/**/*.+(ts|tsx|js)'],
transform: {
'^.+\\.(ts|tsx)?$': 'ts-jest',
},
setupFilesAfterEnv: ['./__tests__/setupTests.js'],
testPathIgnorePatterns: ['factory', 'fileTransformer.js', 'Helper.ts', 'setupTests.js'],
moduleNameMapper: {
'\\.(css|scss|jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$':
'<rootDir>/__tests__/fileTransformer.js',
},
};