mirror of
https://github.com/SomboChea/ui
synced 2024-11-04 21:54:30 +07:00
97e8448098
* chore: refactoring version page * refactor: migrate version page to hooks * refactor: Version page better imports * fix: #100 render not found on click item * test: add test for version page * chore: update mocks * test: add scenario for not found package * chore: fix wrong mock path * chore: update mock * chore: add todo list
23 lines
958 B
JavaScript
23 lines
958 B
JavaScript
const { defaults } = require('jest-config');
|
|
|
|
module.exports = {
|
|
name: 'verdaccio-ui-jest',
|
|
verbose: true,
|
|
automock: false,
|
|
collectCoverage: true,
|
|
testEnvironment: 'jest-environment-jsdom-global',
|
|
moduleFileExtensions: [...defaults.moduleFileExtensions, 'ts', 'tsx'],
|
|
testURL: 'http://localhost',
|
|
rootDir: '..',
|
|
setupFiles: ['<rootDir>/jest/setup.ts'],
|
|
transformIgnorePatterns: ['<rootDir>/node_modules/(?!react-syntax-highlighter)'],
|
|
modulePathIgnorePatterns: ['<rootDir>/coverage', '<rootDir>/scripts', '<rootDir>/.circleci', '<rootDir>/tools', '<rootDir>/build', '<rootDir>/.vscode/'],
|
|
snapshotSerializers: ['enzyme-to-json/serializer', 'jest-emotion'],
|
|
moduleNameMapper: {
|
|
'\\.(s?css)$': '<rootDir>/node_modules/identity-obj-proxy',
|
|
'github-markdown-css': '<rootDir>/node_modules/identity-obj-proxy',
|
|
'\\.(png)$': '<rootDir>/node_modules/identity-obj-proxy',
|
|
'\\.(svg)$': '<rootDir>/jest/unit/empty.ts',
|
|
},
|
|
};
|