We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d2860c commit d7194d4Copy full SHA for d7194d4
scripts/stryker-collect-results.ts
@@ -66,6 +66,7 @@ function getMutationTestResults(): schema.MutationTestResult[] {
66
function getMutationTestResultAggregation(mutationResults: schema.MutationTestResult): MutationTestResultAggregation {
67
const total = Object.values(mutationResults.files).reduce((acc, file) => acc + file.mutants.length, 0);
68
const allMutants = Object.values(mutationResults.files).reduce(
69
+ // biome-ignore lint/performance/noAccumulatingSpread: <explanation>
70
(acc, file) => [...acc, ...file.mutants],
71
[] as schema.MutantResult[],
72
);
0 commit comments