mirror of
https://github.com/privacy-scaling-explorations/p0tion.git
synced 2026-04-21 03:00:07 -04:00
32 lines
829 B
JSON
32 lines
829 B
JSON
{
|
|
"testPathIgnorePatterns": [".d.ts", ".js"],
|
|
"moduleFileExtensions": ["ts", "js"],
|
|
"transform": {
|
|
"\\.(t|j)s?$": "babel-jest"
|
|
},
|
|
"testMatch": ["**/test/**/*.test.*"],
|
|
"globals": {
|
|
"ts-jest": {
|
|
"tsConfig": "tsconfig.json"
|
|
}
|
|
},
|
|
"moduleNameMapper": {
|
|
"@zkmpc/(.*)$": "<rootDir>/packages/$1"
|
|
},
|
|
"testTimeout": 60000,
|
|
"setupFiles": ["dotenv/config"],
|
|
"collectCoverageFrom": ["packages/**/*", "!**/dist/**", "!**/node_modules/**", "!**/build/**"],
|
|
"verbose": true,
|
|
"collectCoverage": true,
|
|
"coverageDirectory": "coverage/",
|
|
"coverageProvider": "v8",
|
|
"coverageThreshold": {
|
|
"global": {
|
|
"branches": 90,
|
|
"functions": 95,
|
|
"lines": 95,
|
|
"statements": 95
|
|
}
|
|
}
|
|
}
|