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.
19 lines
520 B
19 lines
520 B
module.exports = {
|
|
displayName: '/development',
|
|
collectCoverageFrom: ['<rootDir>/**/*.js'],
|
|
coverageDirectory: '../jest-coverage/development/',
|
|
coverageReporters: ['html', 'text-summary', 'json-summary'],
|
|
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,
|
|
};
|
|
|