mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
8d0bba4dea
* test: New Image Snapshots * circleci apt-get some lib * fix command * set CircleCI NODE_ENV * new test:image * upgrade jest-image-snapshot * needs dist * use jest html report * use now deploy * fix deploy skip * set token * upgrade version * change if * improve imageTest * print node version * revert puppeteer version * fix now fail * test * fix now fail * add if * fix if * add judgement * fix action * rebase * fix test image script * lint ignore * fix lint fail
25 lines
850 B
JavaScript
25 lines
850 B
JavaScript
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\\.js$',
|
|
testEnvironment: 'node',
|
|
transformIgnorePatterns,
|
|
snapshotSerializers: ['enzyme-to-json/serializer'],
|
|
globals: {
|
|
'ts-jest': {
|
|
tsConfigFile: './tsconfig.test.json',
|
|
},
|
|
},
|
|
reporters: ['default', 'jest-stare'],
|
|
};
|