n8n/packages/@n8n/vitest-config/coverage-excludes.ts
Matsu 8bb6489918
chore: Remove remaining Jest references (no-changelog) (#33412)
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>
2026-07-09 09:29:24 +03:00

14 lines
409 B
TypeScript

/**
* Files to drop from coverage. vitest 4 ships an empty default `exclude` and
* only auto-excludes the test files it runs, so type decls, mocks and test
* helpers otherwise land in the denominator at 0%. Spread these onto
* `coverageConfigDefaults.exclude` in each config.
*/
export const coverageExcludes = [
'**/*.spec.ts',
'**/*.test.ts',
'**/__tests__/**',
'**/__mocks__/**',
'**/*.d.ts',
];