-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathjest.config.json
28 lines (26 loc) · 1005 Bytes
/
jest.config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"roots": ["<rootDir>"],
"testMatch": ["**/test/**/*.spec.ts"],
"moduleDirectories": ["node_modules"],
"moduleNameMapper": {
"@ethereumjs/evm/dist/cjs/evm": "<rootDir>/node_modules/@ethereumjs/evm/dist/cjs/evm",
"@ethereumjs/evm/dist/cjs/exceptions": "<rootDir>/node_modules/@ethereumjs/evm/dist/cjs/exceptions",
"@ethereumjs/evm/dist/cjs/interpreter": "<rootDir>/node_modules/@ethereumjs/evm/dist/cjs/interpreter",
"@ethereumjs/evm/dist/cjs/opcodes": "<rootDir>/node_modules/@ethereumjs/evm/dist/cjs/opcodes"
},
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testTimeout": 2000,
"verbose": true,
"coveragePathIgnorePatterns": ["/node_modules/", "/test/", "/coverage/", "/.compiler_cache/"],
"coverageReporters": ["text", "text-summary", "lcov"],
"coverageThreshold": {
"global": {
"statements": 85,
"branches": 68,
"functions": 80,
"lines": 85
}
}
}