Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB committed Nov 16, 2023
1 parent 0bd6f1e commit c54fd07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/jest-reporters/src/getResultHeader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default function getResultHeader(
if (result.memoryUsage) {
const toMB = (bytes: number) => Math.floor(bytes / 1024 / 1024);
testDetail.push(
`pid ${result.workerProcessId}: ${toMB(result.memoryUsage)} MB heap size`
`pid ${result.workerProcessId}: ${toMB(result.memoryUsage)} MB heap size`,
);
}

Expand Down

0 comments on commit c54fd07

Please sign in to comment.