Skip to content

Commit

Permalink
chore: added logs to tests
Browse files Browse the repository at this point in the history
  • Loading branch information
frolvanya committed Jan 17, 2025
1 parent ef6006e commit f2535a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,4 @@ rust-build-mock-token: $(RES_DIR)
rust-build-near: rust-build-omni-bridge rust-build-omni-token rust-build-token-deployer rust-build-omni-prover rust-build-evm-prover rust-build-wormhole-omni-prover-proxy rust-build-mock-prover rust-build-mock-token

rust-run-tests:
cargo nextest run --manifest-path $(NEAR_MANIFEST)
cargo nextest run --manifest-path $(NEAR_MANIFEST) --success-output=immediate
2 changes: 2 additions & 0 deletions near/omni-tests/src/fin_transfer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ mod tests {
#[case] fee: u128,
#[case] expected_error: Option<&str>,
) {
let start = std::time::Instant::now();
let result = test_fin_transfer(storage_deposit_accounts, amount, fee).await;

match result {
Expand All @@ -84,6 +85,7 @@ mod tests {
);
}
}
println!("Elapsed: {:?}", start.elapsed());
}

async fn test_fin_transfer(
Expand Down

0 comments on commit f2535a4

Please sign in to comment.