kithara-test-utils 0.0.1-alpha3

kithara test runtime: probe/hang/mock helpers (no-op in release).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[cfg(not(target_arch = "wasm32"))]
pub mod capture;

#[cfg(not(feature = "probe"))]
mod noop;
#[cfg(feature = "probe")]
mod real;

#[cfg(not(feature = "probe"))]
pub use noop::*;
#[cfg(feature = "probe")]
pub use real::*;