mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-26 12:29:06 +01:00
bc6c60cde1
This reverts commit4d42715220
, reversing changes made tof09ab88891
.
20 lines
520 B
JavaScript
20 lines
520 B
JavaScript
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,
|
|
};
|