Skip to content

Commit

Permalink
Re-enable code coverage collection
Browse files Browse the repository at this point in the history
Code coverage has been broken for a while. This re-enables it, and
removes the coverage threshold temporarily until it is met again.
  • Loading branch information
NSeydoux committed Feb 29, 2024
1 parent 1c1e96c commit f113fe6
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions jest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,14 @@ const config: Config = {
coverageReporters: process.env.CI ? ["text", "lcov"] : ["text"],
coverageThreshold: {
global: {
branches: 100,
functions: 100,
lines: 100,
statements: 100,
// branches: 100,
// functions: 100,
// lines: 100,
// statements: 100,
},
},
collectCoverageFrom: ["<rootDir>/src/**/*.ts"],
collectCoverageFrom: ["<rootDir>/packages/**/*.ts"],
coveragePathIgnorePatterns: ["<rootDir>/packages/**/examples/**/*.ts"],
projects: [
{
...baseConfig,
Expand Down

0 comments on commit f113fe6

Please sign in to comment.