Skip to content

Commit

Permalink
TESTING CI REMOVE ME PLS
Browse files Browse the repository at this point in the history
  • Loading branch information
sug0 committed May 27, 2024
1 parent 7fdaa46 commit 5eaf19c
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions crates/tests/src/integration/masp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -938,6 +938,21 @@ fn spend_unconverted_asset_type() -> Result<()> {
/// 13. Send 10 BTC from SK(B) to Bertha
#[test]
fn masp_txs_and_queries() -> Result<()> {

{
use std::panic;

let panic_hook = panic::take_hook();

panic::set_hook(Box::new(move |panic_info| {
println!("=========================================================");
println!("=========================================================");
println!("{panic_info}");
panic_hook(panic_info);
println!("=========================================================");
println!("=========================================================");
}));
}
// Uncomment for better debugging
// let _log_guard = namada_apps_lib::logging::init_from_env_or(
// tracing::level_filters::LevelFilter::INFO,
Expand Down

0 comments on commit 5eaf19c

Please sign in to comment.