UNPKG

ffc-pay-etl-framework

Version:

A framework for creating ETL pipelines in node

43 lines (42 loc) 882 B
module.exports = { collectCoverage: true, collectCoverageFrom: [ '**/*.js', '!**/*.test.js' ], coverageDirectory: 'test-output', coverageReporters: [ 'text-summary', 'lcov', 'cobertura' ], coveragePathIgnorePatterns: [ '<rootDir>/node_modules/', '<rootDir>/test-output/', '<rootDir>/test/', '<rootDir>/jest.config.js', '<rootDir>/app/config', '<rootDir>/eslint.config.js', '<rootDir>/__mocks__/', '<rootDir>/.devcontainer/', '<rootDir>/examples/' ], modulePathIgnorePatterns: [ 'node_modules' ], reporters: [ 'default', [ 'jest-junit', { suiteName: 'jest tests', outputDirectory: 'test-output', outputName: 'junit.xml' } ] ], testEnvironment: 'node', testPathIgnorePatterns: [], setupFilesAfterEnv: ['./jest.setup.js'], verbose: true }