Skip to content

Commit

Permalink
EPMRPP-89652 || Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
AliakseiLiasnitski committed Apr 6, 2024
1 parent 47d1d40 commit f71d054
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/reporter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,9 @@ export class RPReporter implements Reporter {

if (errors?.length && this.config.extendTestDescriptionWithLastError) {
const { stack } = taskResult.errors[0];
finishTestItemObj.description = (finishTestItemObj.description || '').concat(`\n\`\`\`error\n${stack}\n\`\`\``);
finishTestItemObj.description = (finishTestItemObj.description || '').concat(
`\n\`\`\`error\n${stack}\n\`\`\``,
);
}
}

Expand Down

0 comments on commit f71d054

Please sign in to comment.