Skip to content

Commit

Permalink
stack
Browse files Browse the repository at this point in the history
  • Loading branch information
nvuillam committed Dec 31, 2024
1 parent 1fc0df0 commit 379cd7e
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?.error?.stacktrace) {
failedTestRes.stack = failedTestIn.error.stacktrace;
if (failedTestIn?.stacktrace) {
failedTestRes.stack = failedTestIn.stacktrace;
}
failedTests.push(failedTestRes);
}
Expand Down

0 comments on commit 379cd7e

Please sign in to comment.