You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
514 B
20 lines
514 B
3 years ago
|
module.exports = {
|
||
|
displayName: '/development',
|
||
|
collectCoverageFrom: ['<rootDir>/**/*.js'],
|
||
|
coverageDirectory: '../jest-coverage/development/',
|
||
|
coverageReporters: ['json', 'lcov', 'text', 'clover'],
|
||
|
coverageThreshold: {
|
||
|
'./development/build/transforms/**/*.js': {
|
||
|
branches: 100,
|
||
|
functions: 100,
|
||
|
lines: 100,
|
||
|
statements: 100,
|
||
|
},
|
||
|
},
|
||
|
resetMocks: true,
|
||
|
restoreMocks: true,
|
||
|
testEnvironment: 'node',
|
||
|
testMatch: ['<rootDir>/build/**/*.test.js'],
|
||
|
testTimeout: 2500,
|
||
|
};
|