mirror of
https://github.com/n8n-io/n8n.git
synced 2026-07-28 03:24:59 +02:00
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>
14 lines
409 B
TypeScript
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',
|
|
];
|