mirror of
https://github.com/SomboChea/ui
synced 2024-11-05 14:14:26 +07:00
d1b3e6e3b5
* build: add e2e testing scripts * build: add e2e testing scripts * chore: fix script * chore: fix script * chore: ignore e2e normal test * chore: fix node_latest_browser * chore: move lint to prepare * chore: fix lint * chore: add local theme * fix: e2e tests
31 lines
1014 B
JavaScript
31 lines
1014 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/',
|
|
'<rootDir>/test/e2e/',
|
|
],
|
|
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',
|
|
},
|
|
};
|