2020-12-22 10:25:07 +01:00
|
|
|
const config = require('../../../../jest/config');
|
|
|
|
|
|
|
|
module.exports = Object.assign({}, config, {
|
|
|
|
name: 'verdaccio-ui-jest',
|
|
|
|
verbose: true,
|
|
|
|
automock: false,
|
|
|
|
collectCoverage: true,
|
|
|
|
testEnvironment: 'jest-environment-jsdom-global',
|
|
|
|
transform: {
|
|
|
|
'^.+\\.(js|ts|tsx)$': 'babel-jest',
|
|
|
|
},
|
|
|
|
moduleFileExtensions: ['js', 'ts', 'tsx'],
|
|
|
|
testURL: 'http://localhost',
|
|
|
|
rootDir: '..',
|
2021-06-12 21:51:54 +02:00
|
|
|
setupFilesAfterEnv: ['@testing-library/jest-dom/extend-expect'],
|
2020-12-22 10:25:07 +01:00
|
|
|
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/',
|
|
|
|
'<rootDir>/test/e2e/',
|
|
|
|
],
|
|
|
|
snapshotSerializers: ['@emotion/jest/serializer'],
|
|
|
|
moduleNameMapper: {
|
|
|
|
'\\.(s?css)$': '<rootDir>/jest/identity.js',
|
|
|
|
'\\.(png)$': '<rootDir>/jest/identity.js',
|
|
|
|
'\\.(svg)$': '<rootDir>/jest/unit/empty.ts',
|
|
|
|
'github-markdown-css': '<rootDir>/jest/identity.js',
|
|
|
|
// note: this section has to be on sync with webpack configuration
|
|
|
|
'verdaccio-ui/components/(.*)': '<rootDir>/src/components/$1',
|
|
|
|
'verdaccio-ui/utils/(.*)': '<rootDir>/src/utils/$1',
|
2021-04-15 21:10:28 +02:00
|
|
|
'verdaccio-ui/providers/(.*)': '<rootDir>/src/providers/$1',
|
2020-12-22 10:25:07 +01:00
|
|
|
'verdaccio-ui/design-tokens/(.*)': '<rootDir>/src/design-tokens/$1',
|
|
|
|
},
|
|
|
|
});
|