ic-testkit 0.0.1

PocketIC-oriented test utilities for IC canister tests
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Host-side artifact discovery and build helpers for PocketIC tests.

mod icp;
mod wasm;
mod workspace;

pub use icp::{
    WatchedInputSnapshot, icp_artifact_ready_for_build, icp_artifact_ready_with_snapshot,
};
pub use wasm::{
    WasmBuildProfile, build_wasm_canisters, read_wasm, wasm_artifacts_ready, wasm_path,
};
pub use workspace::{test_target_dir, workspace_root_for};