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.
Tag:
Branch:
Tree:
8d99a7360c
develop
feature/default_network_editable
v10.22.3
${ noResults }
18 lines
480 B
18 lines
480 B
module.exports = {
|
|||
restoreMocks: true,
|
|||
coverageDirectory: 'jest-coverage/',
|
|||
collectCoverageFrom: ['<rootDir>/ui/app/**/swaps/**'],
|
|||
coveragePathIgnorePatterns: ['.stories.js', '.snap'],
|
|||
coverageThreshold: {
|
|||
global: {
|
|||
branches: 32.75,
|
|||
functions: 43.31,
|
|||
lines: 43.12,
|
|||
statements: 43.67,
|
|||
},
|
|||
},
|
|||
setupFiles: ['./test/setup.js', './test/env.js'],
|
|||
setupFilesAfterEnv: ['./test/jest/setup.js'],
|
|||
testMatch: ['**/ui/**/?(*.)+(test).js'],
|
|||
};
|