Skip to main content

canic_testkit/artifacts/
mod.rs

1//! Host-side artifact discovery and build helpers for PocketIC tests.
2
3mod dfx;
4mod wasm;
5mod workspace;
6
7pub use dfx::{
8    WatchedInputSnapshot, build_dfx_all_with_env, dfx_artifact_ready_for_build,
9    dfx_artifact_ready_with_snapshot,
10};
11pub use wasm::{
12    INTERNAL_TEST_ENDPOINTS_ENV, WasmBuildProfile, build_internal_test_wasm_canisters,
13    build_internal_test_wasm_canisters_with_env, build_wasm_canisters, read_wasm,
14    wasm_artifacts_ready, wasm_path,
15};
16pub use workspace::{test_target_dir, workspace_root_for};