Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit 6b17f63

Browse files
committed
print out error statement
1 parent c81ef44 commit 6b17f63

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

token/cli/tests/command.rs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,12 @@ async fn main() {
148148
async_trial!(gc, gc_test_validator, gc_payer),
149149
];
150150

151-
libtest_mimic::run(&args, tests).exit();
151+
let test_result = libtest_mimic::run(&args, tests);
152+
println!("{:?}", test_result);
153+
154+
test_result.exit();
155+
156+
// libtest_mimic::run(&args, tests).exit();
152157
}
153158

154159
fn clone_keypair(keypair: &Keypair) -> Keypair {

0 commit comments

Comments
 (0)