holochain_wind_tunnel_runner 0.7.1

Customises the wind_tunnel_runner for Holochain testing
Documentation
mod common;

mod bin_path;
mod build_info;
mod context;
mod holochain_runner;
mod macros;
mod runner_context;

pub mod prelude {
    /// Common operations for Holochain scenarios.
    ///
    /// This is a good place to start if you are getting started writing scenarios.
    pub use crate::common::*;

    pub use crate::bin_path::WT_HOLOCHAIN_PATH_ENV;
    pub use crate::context::HolochainAgentContext;
    pub use crate::holochain_runner::HolochainRunner;
    pub use crate::runner_context::HolochainRunnerContext;

    /// Re-export of the `wind_tunnel_runner` prelude.
    ///
    /// This is for convenience so that you can depend on a single crate for the runner in your scenarios.
    pub use wind_tunnel_runner::prelude::*;

    /// Re-export of the instrumented client for convenience.
    pub use holochain_client_instrumented::prelude::*;
}