mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-23 17:40:23 +03:00
35 lines
968 B
JavaScript
35 lines
968 B
JavaScript
module.exports = {
|
|
coverageDirectory: '<rootDir>/coverage',
|
|
collectCoverageFrom: [
|
|
'src/**/*.{ts,tsx}',
|
|
'!src/*.{ts,tsx}',
|
|
'!src/reducers/index.ts',
|
|
'!src/**/provideServices.ts',
|
|
'!src/container/*.ts',
|
|
],
|
|
coverageThreshold: {
|
|
global: {
|
|
statements: 85,
|
|
branches: 80,
|
|
functions: 80,
|
|
lines: 85,
|
|
},
|
|
},
|
|
setupFiles: [ '<rootDir>/config/setupEnzyme.js' ],
|
|
testMatch: [ '<rootDir>/test/**/*.test.{ts,tsx}' ],
|
|
testEnvironment: 'jsdom',
|
|
testURL: 'http://localhost',
|
|
transform: {
|
|
'^.+\\.(ts|tsx|js)$': '<rootDir>/node_modules/babel-jest',
|
|
'^(?!.*\\.(ts|tsx|js|json)$)': '<rootDir>/config/jest/fileTransform.js',
|
|
},
|
|
transformIgnorePatterns: [
|
|
'<rootDir>/.stryker-tmp',
|
|
'[/\\\\]node_modules[/\\\\].+\\.(js|jsx|ts|tsx)$',
|
|
'^.+\\.module\\.scss$',
|
|
],
|
|
moduleNameMapper: {
|
|
'^.+\\.module\\.scss$': 'identity-obj-proxy',
|
|
},
|
|
moduleFileExtensions: [ 'js', 'ts', 'tsx', 'json' ],
|
|
};
|