kithara-test-utils 0.0.1-alpha4

kithara test runtime: probe/hang/mock helpers (no-op in release).
1
2
3
4
5
6
7
8
9
10
11
12
#[cfg(all(not(target_arch = "wasm32"), any(test, feature = "probe")))]
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::*;