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.
15 lines
367 B
15 lines
367 B
module.exports = {
|
|
restoreMocks: true,
|
|
coverageDirectory: 'jest-coverage/',
|
|
coverageThreshold: {
|
|
global: {
|
|
branches: 21.24,
|
|
functions: 23.01,
|
|
lines: 27.19,
|
|
statements: 27.07,
|
|
},
|
|
},
|
|
setupFiles: ['./test/setup.js', './test/env.js'],
|
|
setupFilesAfterEnv: ['./test/jest/setup.js'],
|
|
testMatch: ['**/ui/**/?(*.)+(test).js'],
|
|
};
|
|
|