Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove tracers #1915

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading