canic-testkit 0.27.11

Canic — a canister orchestration and management toolkit for the Internet Computer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Host-side artifact discovery and build helpers for PocketIC tests.

mod dfx;
mod wasm;
mod workspace;

pub use dfx::{
    WatchedInputSnapshot, build_dfx_all_with_env, dfx_artifact_ready_for_build,
    dfx_artifact_ready_with_snapshot,
};
pub use wasm::{
    INTERNAL_TEST_ENDPOINTS_ENV, WasmBuildProfile, build_internal_test_wasm_canisters,
    build_internal_test_wasm_canisters_with_env, build_wasm_canisters, read_wasm,
    wasm_artifacts_ready, wasm_path,
};
pub use workspace::{test_target_dir, workspace_root_for};