n8n/jest.coverage-excludes.js
Declan Carroll 3923f1978f
ci: Full nightly coverage report — unit + integration + E2E + Python merged into one lcov (no-changelog) (#31945)
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-11 06:25:18 +00:00

12 lines
436 B
JavaScript

// Shared `collectCoverageFrom` exclusions for all jest packages. `**`-anchored
// so they apply regardless of the source roots a package collects from.
// Mirrored by packages/@n8n/vitest-config/coverage-excludes.ts (vitest) and the
// V8 path filter in packages/testing/playwright/coverage-options.ts — keep in sync.
module.exports = [
'!**/*.spec.ts',
'!**/*.test.ts',
'!**/__tests__/**',
'!**/__mocks__/**',
'!**/*.d.ts',
];