generic-interceptor
Version:
Provide proxy handler for getting properties and executing functions
18 lines • 497 B
JSON
{
"transform": {
"^.+\\.(t|j)sx?$": "ts-jest"
},
"collectCoverageFrom": ["<rootDir>/src/**/*.ts"],
"verbose": true,
"globalSetup":"<rootDir>/tests/shared/validation.ts",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": ["ts", "tsx", "js", "jsx", "json", "node"],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 0
}
}
}