Files
deployment-portal-fe/jest.config.js
2020-06-13 22:44:27 +05:30

16 lines
491 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',
},
};