Skip to content

Commit

Permalink
test: fix path to collect code coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
ilfa committed Dec 6, 2023
1 parent c9ad357 commit b6b1f03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ module.exports = {
testEnvironment: 'node',
testRegex: '/test/.+test.tsx?$',
passWithNoTests: true,
collectCoverageFrom: ['./src/**/**.ts', '!**/handlers/**.ts', '!**/model/**.ts', '!./src/app.ts', '!**/index.ts'],
collectCoverageFrom: ['./proxy/**/**.ts', '!**/handlers/**.ts', '!**/model/**.ts', '!./proxy/app.ts', '!**/index.ts'],
coverageReporters: ['lcov', 'json-summary', ['text', { file: 'coverage.txt', path: './' }]],
}

0 comments on commit b6b1f03

Please sign in to comment.