mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-23 20:18:00 +01:00
42 lines
929 B
JavaScript
42 lines
929 B
JavaScript
export default {
|
|
collectCoverage: true,
|
|
collectCoverageFrom: [
|
|
'js/**/*.{js,ts}',
|
|
],
|
|
coveragePathIgnorePatterns: [
|
|
'/node_modules/',
|
|
'/.*\\.test\\.ts$',
|
|
'.*\\.d\\.ts$',
|
|
],
|
|
coverageDirectory: '<rootDir>/coverage/',
|
|
coverageThreshold: {
|
|
global: {
|
|
statements: 0,
|
|
branches: 0,
|
|
functions: 0,
|
|
lines: 0,
|
|
},
|
|
'./js/utils/**/*.ts': {
|
|
statements: 100,
|
|
branches: 100,
|
|
functions: 100,
|
|
lines: 100,
|
|
},
|
|
},
|
|
preset: 'ts-jest/presets/js-with-ts-esm',
|
|
setupFilesAfterEnv: ['<rootDir>/test/jest-setup.ts'],
|
|
testEnvironment: './fix-jsdom.ts',
|
|
testPathIgnorePatterns: ['/node_modules/', '/dist/'],
|
|
moduleNameMapper: {
|
|
'./js/(.*)': '<rootDir>/js/$1',
|
|
},
|
|
transform: {
|
|
'^.+\\.tsx?$': ['ts-jest', {
|
|
tsconfig: '<rootDir>/tsconfig.json',
|
|
useESM: true,
|
|
}]
|
|
},
|
|
globals: {
|
|
extensionsToTreatAsEsm: ['.ts', '.js'],
|
|
}
|
|
};
|