Skip to content

Commit

Permalink
fix(jest-config): ignore *.pw.spec.ts (#756)
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode authored Nov 29, 2024
1 parent 6cd35c2 commit 81a6d88
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion projects/jest-config/jest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,12 @@ export default {
String.raw`node_modules/(?!@angular|rxjs|ngx-highlightjs|@maskito|@ng-web-apis|@taiga-ui\/event-plugins|@taiga-ui\/polymorpheus)`,
],
testMatch: ['<rootDir>/projects/**/*.spec.ts'],
testPathIgnorePatterns: ['/cypress/', '/playwright/', '/node_modules/'],
testPathIgnorePatterns: [
'/cypress/',
'/playwright/',
'/node_modules/',
'.pw.spec.ts',
],
coverageDirectory: '<rootDir>/coverage',
collectCoverageFrom: ['<rootDir>/**/*.ts'],
coveragePathIgnorePatterns: ['node_modules', 'schematics', '.spec.ts', '.cy.ts'],
Expand Down

0 comments on commit 81a6d88

Please sign in to comment.