canic-host 0.70.4

Host-side build, install, deployment, and fleet-template library for Canic workspaces
Documentation
1
2
3
4
5
6
7
8
use super::should_export_candid_artifacts;

// Keep public Candid export restricted to local/development environments.
#[test]
fn candid_artifact_export_is_dev_only() {
    assert!(should_export_candid_artifacts("local"));
    assert!(!should_export_candid_artifacts("ic"));
}