Skip to content

Commit d7194d4

Browse files
committed
formatting
1 parent 3d2860c commit d7194d4

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

scripts/stryker-collect-results.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ function getMutationTestResults(): schema.MutationTestResult[] {
6666
function getMutationTestResultAggregation(mutationResults: schema.MutationTestResult): MutationTestResultAggregation {
6767
const total = Object.values(mutationResults.files).reduce((acc, file) => acc + file.mutants.length, 0);
6868
const allMutants = Object.values(mutationResults.files).reduce(
69+
// biome-ignore lint/performance/noAccumulatingSpread: <explanation>
6970
(acc, file) => [...acc, ...file.mutants],
7071
[] as schema.MutantResult[],
7172
);

0 commit comments

Comments
 (0)