mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
42a72aa352
18 lines
480 B
JavaScript
18 lines
480 B
JavaScript
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'],
|
|||
};
|