module.exports = { moduleFileExtensions: [ 'js', 'html' ], globals: { ICON_PATH: './' }, transform: { '^.+\\.js$': 'babel-jest', '^.+\\.html$': '/test/react/utils/htmlLoader.js' }, moduleNameMapper: { '^.+\\.svg$': '/test/react/utils/svgMock.js' }, coveragePathIgnorePatterns: [ '/src/react/index.js', '/src/index.js' ], testRegex: '/test/react/.*.(spec|test)\\.jsx?$', testPathIgnorePatterns: [ '/node_modules/', ], collectCoverageFrom: [ 'src/**/*.{js,jsx}' ], coverageReporters: [ 'lcov' ] };