Skip to content

Commit

Permalink
Update packages/jest-message-util/src/index.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB committed May 21, 2021
1 parent a9d22c8 commit 036a6f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/jest-message-util/src/index.ts
Expand Up @@ -337,7 +337,7 @@ export const formatResultsErrors = (
): string | null => {
const failedResults: FailedResults = testResults.reduce<FailedResults>(
(errors, result) => {
result.failureMessages.forEach((item: string) => {
result.failureMessages.forEach(item => {
errors.push({content: checkForCommonEnvironmentErrors(item), result});
});
return errors;
Expand Down

0 comments on commit 036a6f0

Please sign in to comment.