module.exports = { testEnvironment: 'jsdom', testMatch: [ '/test/spec/**/*.{spec,test}.{js,jsx,ts,tsx}' ], transform: { '^.*PickerTemplate.js$': './config/minifyHtmlInJest.js' }, moduleFileExtensions: ['js'], testPathIgnorePatterns: ['node_modules'], bail: true, verbose: true, silent: false, setupFilesAfterEnv: [ '/config/jest.setup.js' ], coverageReporters: ['json', 'lcov', 'text', 'html'], coveragePathIgnorePatterns: [ 'bin/', 'test/' ], coverageThreshold: { global: { statements: 100, branches: 100, functions: 100, lines: 100 } } }