mirror of
https://github.com/CryptKeeperZK/crypt-keeper-extension.git
synced 2026-01-09 14:07:57 -05:00
19 lines
583 B
JavaScript
19 lines
583 B
JavaScript
module.exports = {
|
|
testTimeout: 10000,
|
|
transform: {
|
|
"\\.(ts|tsx)$": ["ts-jest", { tsconfig: "<rootDir>/tsconfig.tests.json" }],
|
|
},
|
|
testMatch: ["**/src/**/__tests__/**/*.[jt]s?(x)", "**/src/**/?(*.)+(spec|test).[jt]s?(x)"],
|
|
moduleFileExtensions: ["ts", "js", "tsx", "jsx"],
|
|
coverageReporters: ["clover", "lcov", "json", "json-summary", "text", "text-summary"],
|
|
coveragePathIgnorePatterns: ["/node_modules/", "/test/", "/__tests__/"],
|
|
coverageThreshold: {
|
|
global: {
|
|
statements: 90,
|
|
branches: 90,
|
|
functions: 90,
|
|
lines: 90,
|
|
},
|
|
},
|
|
};
|