Skip to content

Commit

Permalink
fix(): ignore patterns for jest
Browse files Browse the repository at this point in the history
  • Loading branch information
limitofzero committed Jan 23, 2024
1 parent 6fd9cc2 commit dfad9d9
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions jest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
export default {
clearMocks: true,
coverageDirectory: 'coverage',
coveragePathIgnorePatterns: ['/node_modules/', 'src/index.ts'],
coveragePathIgnorePatterns: ['/node_modules/', 'src/index.ts', 'src/e2e/'],
coverageProvider: 'v8',
coverageReporters: [
'json-summary',
Expand All @@ -16,7 +16,4 @@ export default {
'**/__tests__/**/*.[jt]s?(x)',
'**/?(*.)+(spec|test).[tj]s?(x)',
],
testPathIgnorePatterns: [
"./src/e2e/**/*"
],
};

0 comments on commit dfad9d9

Please sign in to comment.