module.exports = { preset: 'jest-preset-angular', setupFilesAfterEnv: ['/setup-jest.ts'], testPathIgnorePatterns: [ '/node_modules/', '/e2e/', 'abstract-name-filter-service', 'abstract-paperless-service', ], transformIgnorePatterns: [ `/node_modules/.pnpm/(?!.*\\.mjs$|lodash-es)`, ], moduleNameMapper: { '^src/(.*)': '/src/$1', }, workerIdleMemoryLimit: '512MB', reporters: [ 'default', [ 'jest-junit', { classNameTemplate: '{filepath}/{classname}: {title}', }, ], ], }