Skip to content

Commit

Permalink
fix: update coverage collection pattern in Jest configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
rsaz committed Nov 28, 2024
1 parent 4a7d259 commit 4e658cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const config: JestConfigWithTsJest = {
roots: ["<rootDir>/src", "<rootDir>/test"],
testRegex: ".*\\.spec\\.ts$",
testPathIgnorePatterns: ["/node_modules/", "/bin/"],
collectCoverageFrom: ["src/**/*.ts", "!**/*.spec.ts", "src/**/index.ts"],
collectCoverageFrom: ["!src/**/*.ts", "!**/*.spec.ts", "!src/**/index.ts"],
moduleNameMapper: {
"^@src/(.*)$": "<rootDir>/src/$1",
},
Expand Down

0 comments on commit 4e658cc

Please sign in to comment.