mirror of https://github.com/jkjoy/sunpeiwen.git
13 lines
389 B
JavaScript
13 lines
389 B
JavaScript
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,
|
|
};
|