Skip to content

Commit

Permalink
fix: use default maxCols from Istanbul
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB committed Feb 24, 2022
1 parent c65bb45 commit 5514006
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions packages/jest-reporters/src/CoverageReporter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,7 @@ export default class CoverageReporter extends BaseReporter {
[reporter, additionalOptions] = reporter;
}
istanbulReports
.create(reporter, {
maxCols: process.stdout.columns || Infinity,
...additionalOptions,
})
.create(reporter, additionalOptions)
.execute(reportContext);
});
aggregatedResults.coverageMap = map;
Expand Down

0 comments on commit 5514006

Please sign in to comment.