mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-21 17:37:01 +01:00
73 lines
2.2 KiB
JavaScript
73 lines
2.2 KiB
JavaScript
module.exports = {
|
|
collectCoverageFrom: [
|
|
'<rootDir>/app/scripts/controllers/permissions/**/*.js',
|
|
'<rootDir>/app/scripts/lib/createRPCMethodTrackingMiddleware.js',
|
|
'<rootDir>/shared/**/*.js',
|
|
'<rootDir>/ui/**/*.js',
|
|
],
|
|
coverageDirectory: './jest-coverage/main',
|
|
coveragePathIgnorePatterns: ['.stories.js', '.snap'],
|
|
coverageReporters: ['html', 'text-summary', 'json-summary'],
|
|
coverageThreshold: {
|
|
global: {
|
|
branches: 48,
|
|
functions: 46,
|
|
lines: 52,
|
|
statements: 52,
|
|
},
|
|
'./app/scripts/controllers/permissions/**/*.js': {
|
|
branches: 100,
|
|
functions: 100,
|
|
lines: 100,
|
|
statements: 100,
|
|
},
|
|
'./app/scripts/lib/createRPCMethodTrackingMiddleware.js': {
|
|
branches: 95.65,
|
|
functions: 100,
|
|
lines: 100,
|
|
statements: 100,
|
|
},
|
|
},
|
|
reporters: [
|
|
'default',
|
|
[
|
|
'jest-junit',
|
|
{
|
|
outputDirectory: 'test/test-results/',
|
|
outputName: 'junit.xml',
|
|
},
|
|
],
|
|
],
|
|
// TODO: enable resetMocks
|
|
// resetMocks: true,
|
|
restoreMocks: true,
|
|
setupFiles: [
|
|
'<rootDir>/test/setup.js',
|
|
'<rootDir>/test/env.js',
|
|
'<rootDir>/test/jest/env.js', // jest specific env vars that break mocha tests
|
|
],
|
|
setupFilesAfterEnv: ['<rootDir>/test/jest/setup.js'],
|
|
testMatch: [
|
|
'<rootDir>/ui/**/*.test.js',
|
|
'<rootDir>/shared/**/*.test.js',
|
|
'<rootDir>/app/scripts/lib/**/*.test.js',
|
|
'<rootDir>/app/scripts/migrations/*.test.js',
|
|
'<rootDir>/app/scripts/platforms/*.test.js',
|
|
'<rootDir>/app/scripts/controllers/network/**/*.test.js',
|
|
'<rootDir>/app/scripts/controllers/permissions/**/*.test.js',
|
|
'<rootDir>/app/scripts/flask/**/*.test.js',
|
|
'<rootDir>/app/scripts/lib/createRPCMethodTrackingMiddleware.test.js',
|
|
'<rootDir>/app/scripts/constants/error-utils.test.js',
|
|
],
|
|
testTimeout: 2500,
|
|
// We have to specify the environment we are running in, which is jsdom. The
|
|
// default is 'node'. This can be modified *per file* using a comment at the
|
|
// head of the file. So it may be worthwhile to switch to 'node' in any
|
|
// background tests.
|
|
testEnvironment: 'jsdom',
|
|
testEnvironmentOptions: {
|
|
customExportConditions: ['node', 'node-addons'],
|
|
},
|
|
workerIdleMemoryLimit: '500MB',
|
|
};
|