You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

12 lines
389 B

module.exports = {
coveragePathIgnorePatterns: ['node_modules', 'src/types.ts'],
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
roots: ['<rootDir>'],
setupFiles: ['<rootDir>/jest.init.js'],
testEnvironment: 'jsdom',
testRegex: '/__tests__/.*\\.(ts|tsx|js)$',
transform: {
'\\.(js|ts|tsx)$': 'babel-jest',
},
verbose: true,
};