Skip to content

Commit

Permalink
print out error statement
Browse files Browse the repository at this point in the history
  • Loading branch information
samkim-crypto committed Nov 22, 2024
1 parent c81ef44 commit 6b17f63
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion token/cli/tests/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,12 @@ async fn main() {
async_trial!(gc, gc_test_validator, gc_payer),
];

libtest_mimic::run(&args, tests).exit();
let test_result = libtest_mimic::run(&args, tests);
println!("{:?}", test_result);

test_result.exit();

// libtest_mimic::run(&args, tests).exit();
}

fn clone_keypair(keypair: &Keypair) -> Keypair {
Expand Down

0 comments on commit 6b17f63

Please sign in to comment.