Skip to content

Commit

Permalink
stackTrace
Browse files Browse the repository at this point in the history
  • Loading branch information
nvuillam committed Dec 31, 2024
1 parent 126fe68 commit 9779282
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/common/utils/deployTipJson.ts
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,8 @@ function extractFailedTestsInfo(failedTestsIn: any[]) {
method: failedTestIn.methodName,
error: failedTestIn.message,
};
if (failedTestIn?.stacktrace) {
failedTestRes.stack = failedTestIn.stacktrace;
if (failedTestIn?.stackTrace) {
failedTestRes.stack = failedTestIn.stackTrace;
}
failedTests.push(failedTestRes);
}
Expand Down

0 comments on commit 9779282

Please sign in to comment.