module.exports = { testEnvironment: 'node', coverageDirectory: 'coverage', collectCoverageFrom: [ '**/*.js', '!**/node_modules/**', '!**/coverage/**', '!**/tests/**', '!jest.config.js' ], coverageReporters: ['text', 'lcov', 'html'], testMatch: ['**/tests/**/*.test.js'], setupFilesAfterEnv: ['/tests/setup.js'], forceExit: true, testTimeout: 10000, coverageThreshold: { global: { lines: 80, statements: 80 } } };