Skip to content
This repository has been archived by the owner on Jan 8, 2025. It is now read-only.

Commit

Permalink
ignore untestable tests
Browse files Browse the repository at this point in the history
  • Loading branch information
enitrat committed Oct 4, 2024
1 parent 91661b7 commit 50ea6d1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions crates/contracts/tests/test_kakarot_core.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,10 @@ fn test_kakarot_core_get_starknet_address_unregistered() {
assert_eq!(kakarot_core.get_starknet_address(unregistered_evm_address), computed_address);
}

//TODO Needs to be restored by giving the RLP encoding of the transaction to the test
// More generally, this should _probably_ be an e2e test anyway
#[test]
#[ignore]
fn test_eth_send_transaction_non_deploy_tx() {
// Given
let (native_token, kakarot_core) = contract_utils::setup_contracts_for_testing();
Expand Down Expand Up @@ -296,7 +299,9 @@ fn test_eth_call() {
}


//TODO Needs to be restored by giving the RLP encoding of the transaction to the test
#[test]
#[ignore]
fn test_eth_send_transaction_deploy_tx() {
// Given
let (native_token, kakarot_core) = contract_utils::setup_contracts_for_testing();
Expand Down

0 comments on commit 50ea6d1

Please sign in to comment.