@jakesidsmith/redux-create-reducer
Version:
A utility to create redux reducers from a set of handlers
25 lines (24 loc) • 494 B
JavaScript
module.exports = {
preset: 'ts-jest',
globals: {
'ts-jest': {
diagnostics: {
ignoreCodes: [151001],
},
},
},
collectCoverageFrom: ['src/**/*.(js|jsx|ts|tsx)'],
coverageThreshold: {
global: {
branches: 100,
functions: 100,
lines: 100,
statements: 100,
},
},
testRegex: '(/tests/.*|\\.(test|spec))\\.(ts|tsx|js|jsx)$',
testPathIgnorePatterns: [
'<rootDir>/tests/helpers/',
'<rootDir>/tests/.*\\.d\\.ts',
],
};