1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/jest.config.js

15 lines
317 B
JavaScript
Raw Normal View History

module.exports = {
restoreMocks: true,
coverageDirectory: 'jest-coverage/',
coverageThreshold: {
global: {
branches: 6.94,
functions: 8.85,
lines: 11.76,
statements: 11.78,
},
},
setupFiles: ['./test/setup.js', './test/env.js'],
testMatch: ['**/ui/**/?(*.)+(test).js'],
};