diff --git a/projects/jest-config/jest.config.ts b/projects/jest-config/jest.config.ts index 04308f9c..65bb1eb4 100644 --- a/projects/jest-config/jest.config.ts +++ b/projects/jest-config/jest.config.ts @@ -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: ['/projects/**/*.spec.ts'], - testPathIgnorePatterns: ['/cypress/', '/playwright/', '/node_modules/'], + testPathIgnorePatterns: [ + '/cypress/', + '/playwright/', + '/node_modules/', + '.pw.spec.ts', + ], coverageDirectory: '/coverage', collectCoverageFrom: ['/**/*.ts'], coveragePathIgnorePatterns: ['node_modules', 'schematics', '.spec.ts', '.cy.ts'],