mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-03-31 13:35:08 -05:00
27 lines
582 B
JavaScript
27 lines
582 B
JavaScript
module.exports = {
|
|
preset: 'jest-preset-angular',
|
|
setupFilesAfterEnv: ['<rootDir>/setup-jest.ts'],
|
|
testPathIgnorePatterns: [
|
|
'/node_modules/',
|
|
'/e2e/',
|
|
'abstract-name-filter-service',
|
|
'abstract-paperless-service',
|
|
],
|
|
transformIgnorePatterns: [
|
|
`<rootDir>/node_modules/.pnpm/(?!.*\\.mjs$|lodash-es)`,
|
|
],
|
|
moduleNameMapper: {
|
|
'^src/(.*)': '<rootDir>/src/$1',
|
|
},
|
|
workerIdleMemoryLimit: '512MB',
|
|
reporters: [
|
|
'default',
|
|
[
|
|
'jest-junit',
|
|
{
|
|
classNameTemplate: '{filepath}/{classname}: {title}',
|
|
},
|
|
],
|
|
],
|
|
}
|