Skip to content

Commit

Permalink
feat(starknet_integration_tests): end to end integration test as exec…
Browse files Browse the repository at this point in the history
…utable (not test)

commit-id:7a6dd4a7
  • Loading branch information
lev-starkware committed Dec 10, 2024
1 parent bf633f5 commit 22088d6
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions crates/starknet_integration_tests/src/bin/e2e_integration_test.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
use starknet_integration_tests::end_to_end_integration::end_to_end_integration;
use starknet_integration_tests::utils::create_integration_test_tx_generator;
use starknet_sequencer_infra::trace_util::configure_tracing;
use tracing::info;

#[tokio::main]
async fn main() {
configure_tracing().await;
info!("Running integration test setup.");

// Creates a multi-account transaction generator for integration test
let tx_generator = create_integration_test_tx_generator();

// Run end to end integration test.
end_to_end_integration(tx_generator).await;
}

0 comments on commit 22088d6

Please sign in to comment.