Skip to content

Commit

Permalink
fix(tests): added logs from other field in forge output
Browse files Browse the repository at this point in the history
  • Loading branch information
0xmemorygrinder committed May 15, 2024
1 parent 20d058f commit d0df05e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions vscode/src/tests/test-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ export class TestManager {

for (const suiteResult of Object.values(result)) {
for (const testResult of Object.values(suiteResult.test_results)) {
logs = logs.concat(testResult.reason ?[testResult.reason] : []);
logs = logs.concat(testResult.decoded_logs);
}
}
Expand Down

0 comments on commit d0df05e

Please sign in to comment.