Skip to content

Commit

Permalink
remove tracers
Browse files Browse the repository at this point in the history
  • Loading branch information
BiancaIalangi committed Jan 8, 2025
1 parent d8042b5 commit ddbb117
Showing 1 changed file with 6 additions and 24 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
use forwarder_interact::{
Color, Config, ContractInteract, FORWARDER_BUILTIN_INTERACTOR_TRACE_PATH,
FORWARDER_CHANGE_TO_DYNAMIC_INTERACTOR_TRACE_PATH, FORWARDER_DEPLOY_INTERACTOR_TRACE_PATH,
FORWARDER_MODIFY_CREATOR_INTERACTOR_TRACE_PATH, FORWARDER_UPDATE_TOKEN_INTERACTOR_TRACE_PATH,
};
use forwarder_interact::{Color, Config, ContractInteract};
use multiversx_sc_snippets::imports::*;

const ISSUE_COST: u64 = 50000000000000000u64;
Expand All @@ -13,17 +9,15 @@ const ISSUE_COST: u64 = 50000000000000000u64;
#[tokio::test]
#[ignore = "run on demand, relies on real blockchain state"]
async fn deploy_test_forwarder() {
let mut interactor =
ContractInteract::new(Config::new(), Some(FORWARDER_DEPLOY_INTERACTOR_TRACE_PATH)).await;
let mut interactor = ContractInteract::new(Config::new(), None).await;

interactor.deploy().await;
}

#[tokio::test]
#[ignore = "run on demand"]
async fn builtin_func_tokens_test() {
let mut interact =
ContractInteract::new(Config::new(), Some(FORWARDER_BUILTIN_INTERACTOR_TRACE_PATH)).await;
let mut interact = ContractInteract::new(Config::new(), None).await;

// deploy forwarder
interact.deploy().await;
Expand Down Expand Up @@ -176,11 +170,7 @@ async fn builtin_func_tokens_test() {
#[tokio::test]
#[ignore = "run on demand"]
async fn change_to_dynamic_test() {
let mut interact = ContractInteract::new(
Config::new(),
Some(FORWARDER_CHANGE_TO_DYNAMIC_INTERACTOR_TRACE_PATH),
)
.await;
let mut interact = ContractInteract::new(Config::new(), None).await;

// deploy forwarder
interact.deploy().await;
Expand Down Expand Up @@ -234,11 +224,7 @@ async fn change_to_dynamic_test() {
#[tokio::test]
#[ignore = "run on demand"]
async fn update_token_test() {
let mut interact = ContractInteract::new(
Config::new(),
Some(FORWARDER_UPDATE_TOKEN_INTERACTOR_TRACE_PATH),
)
.await;
let mut interact = ContractInteract::new(Config::new(), None).await;

// deploy forwarder
interact.deploy().await;
Expand All @@ -264,11 +250,7 @@ async fn update_token_test() {
#[tokio::test]
#[ignore = "run on demand"]
async fn modify_creator() {
let mut interact = ContractInteract::new(
Config::new(),
Some(FORWARDER_MODIFY_CREATOR_INTERACTOR_TRACE_PATH),
)
.await;
let mut interact = ContractInteract::new(Config::new(), None).await;

// deploy forwarder
interact.deploy().await;
Expand Down

0 comments on commit ddbb117

Please sign in to comment.