UNPKG

mongodb-simplecrawler-queue

Version:
28 lines (27 loc) 704 B
module.exports = { transform: { '^.+\\.tsx?$': 'ts-jest', }, testEnvironment: 'node', testRegex: '\\.spec.ts$', testPathIgnorePatterns: [ '/lib/', '/node_modules/', // '/test/elastic', // '/test/srch-api', ], moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'], setupFilesAfterEnv: ['jest-extended', './test/config/testSetupFile.ts'], reporters: [ 'default', ['jest-junit', { outputDirectory: 'reports/junit', }], ], coverageDirectory: 'reports/coverage', collectCoverage: false, // if enabled, breakpoints in src do not work because of instrumentation coveragePathIgnorePatterns: [ '/test/', '/node_modules/', ], };