From c49ecaa8efa97ac02093d258304ba28a394e7cf5 Mon Sep 17 00:00:00 2001 From: Mihai Calin Luca Date: Fri, 28 Jun 2024 16:07:19 +0200 Subject: [PATCH] ignored old tests --- .../tests/rust_testing_framework_tester_scenario_go_test.rs | 3 +++ .../tests/rust_testing_framework_tester_scenario_rs_test.rs | 3 +++ 2 files changed, 6 insertions(+) diff --git a/contracts/feature-tests/rust-testing-framework-tester/tests/rust_testing_framework_tester_scenario_go_test.rs b/contracts/feature-tests/rust-testing-framework-tester/tests/rust_testing_framework_tester_scenario_go_test.rs index 76adbba8ce..ec1d6b3799 100644 --- a/contracts/feature-tests/rust-testing-framework-tester/tests/rust_testing_framework_tester_scenario_go_test.rs +++ b/contracts/feature-tests/rust-testing-framework-tester/tests/rust_testing_framework_tester_scenario_go_test.rs @@ -5,16 +5,19 @@ fn world() -> ScenarioWorld { } #[test] +#[ignore] fn test_go() { world().run("scenarios/test.scen.json"); } #[test] +#[ignore] fn test_esdt_generation_go() { world().run("scenarios/test_esdt_generation.scen.json"); } #[test] +#[ignore] fn test_multiple_sc_go() { world().run("scenarios/test_multiple_sc.scen.json"); } diff --git a/contracts/feature-tests/rust-testing-framework-tester/tests/rust_testing_framework_tester_scenario_rs_test.rs b/contracts/feature-tests/rust-testing-framework-tester/tests/rust_testing_framework_tester_scenario_rs_test.rs index 40aaa7f4fe..e5bfcc2def 100644 --- a/contracts/feature-tests/rust-testing-framework-tester/tests/rust_testing_framework_tester_scenario_rs_test.rs +++ b/contracts/feature-tests/rust-testing-framework-tester/tests/rust_testing_framework_tester_scenario_rs_test.rs @@ -10,16 +10,19 @@ fn world() -> ScenarioWorld { } #[test] +#[ignore] fn test_rs() { world().run("scenarios/test.scen.json"); } #[test] +#[ignore] fn test_esdt_generation_rs() { world().run("scenarios/test_esdt_generation.scen.json"); } #[test] +#[ignore] fn test_multiple_sc_rs() { world().run("scenarios/test_multiple_sc.scen.json"); }