mirror of
https://github.com/n8n-io/n8n.git
synced 2026-06-19 07:36:52 +00:00
3923f1978f
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
12 lines
436 B
JavaScript
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',
|
|
];
|