8000 fix(@angular/build): exclude only source test files with unit-test vitest support by clydin · Pull Request #30343 · angular/angular-cli · GitHub
[go: up one dir, main page]

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion packages/angular/build/src/builders/unit-test/builder.ts
6811
Original file line number Diff line number Diff line change
Expand Up @@ -230,11 +230,25 @@ export async function* execute(
reporters: normalizedOptions.reporters ?? ['default'],
coverage: {
enabled: normalizedOptions.codeCoverage,
exclude: normalizedOptions.codeCoverageExclude,
excludeAfterRemap: true,
},
...debugOptions,
},
plugins: [
{
name: 'angular-coverage-exclude',
configureVitest(context) {
// Adjust coverage excludes to not include the otherwise automatically inserted included unit tests.
// Vite does this as a convenience but is problematic for the bundling strategy employed by the
// builder's test setup. To workaround this, the excludes are adjusted here to only automatically
// exclude the TypeScript source test files.
context.project.config.coverage.exclude = [
...(normalizedOptions.codeCoverageExclude ?? []),
'**/*.{test,spec}.?(c|m)ts',
];
},
},
],
});

// Check if all the tests pass to calculate the result
Expand Down
0