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.
24 lines
783 B
24 lines
783 B
1 year ago
|
const { moduleNameMapper, transformIgnorePatterns } = require('./.jest');
|
||
|
|
||
|
// jest config for image snapshots
|
||
|
module.exports = {
|
||
|
setupFiles: ['./tests/setup.js'],
|
||
|
moduleFileExtensions: ['ts', 'tsx', 'js', 'md'],
|
||
|
moduleNameMapper,
|
||
|
transform: {
|
||
|
'\\.tsx?$': './node_modules/@ant-design/tools/lib/jest/codePreprocessor',
|
||
|
'\\.js$': './node_modules/@ant-design/tools/lib/jest/codePreprocessor',
|
||
|
'\\.md$': './node_modules/@ant-design/tools/lib/jest/demoPreprocessor',
|
||
|
'\\.(jpg|png|gif|svg)$': './node_modules/@ant-design/tools/lib/jest/imagePreprocessor',
|
||
|
},
|
||
|
testRegex: 'image\\.test\\.(j|t)s$',
|
||
|
transformIgnorePatterns,
|
||
|
globals: {
|
||
|
'ts-jest': {
|
||
|
tsConfigFile: './tsconfig.test.json',
|
||
|
},
|
||
|
},
|
||
|
preset: 'jest-puppeteer',
|
||
|
testTimeout: 10000,
|
||
|
};
|