diff --git a/Cargo.toml b/Cargo.toml index ce67c92a..b3dd2f2b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -77,7 +77,6 @@ faucet_core = { path = "programs/faucet/core" } vault_core = { path = "programs/vault/core" } test_program_methods = { path = "test_program_methods" } testnet_initial_state = { path = "testnet_initial_state" } -integration_tests = { path = "integration_tests" } test_fixtures = { path = "test_fixtures" } tokio = { version = "1.50", features = [ diff --git a/test_fixtures/src/lib.rs b/test_fixtures/src/lib.rs index da2b7be2..2c9dfb3a 100644 --- a/test_fixtures/src/lib.rs +++ b/test_fixtures/src/lib.rs @@ -1,9 +1,5 @@ //! Shared test/bench fixtures: spins up bedrock + sequencer + indexer + wallet //! end-to-end against docker-compose, exposes a `TestContext` callers can drive. -//! -//! Originally lived under `integration_tests`; split out so non-test consumers -//! (e.g. `integration_bench`) can depend on the fixtures without pulling in the -//! `integration_tests` test files. use std::{net::SocketAddr, path::Path, sync::LazyLock};