chore(jest): increase test coverage

This commit is contained in:
cedoor
2022-01-24 15:30:38 +01:00
parent 6ec8159a31
commit 07a8933c8d

View File

@@ -19,10 +19,10 @@ export default async (): Promise<Config.InitialOptions> => ({
collectCoverageFrom: ["<rootDir>/src/**/*.ts", "!<rootDir>/src/**/index.ts", "!<rootDir>/src/**/*.d.ts"],
coverageThreshold: {
global: {
branches: 20,
functions: 30,
lines: 30,
statements: 30
branches: 90,
functions: 95,
lines: 95,
statements: 95
}
}
})