cross-test 0.1.6

Native and web testing in a single framework
Documentation
1
2
3
4
5
6
7
8
9
10
//! Module that re-exports all the required items to make use of `cross-test`.

#[cfg(not(target_arch = "wasm32"))]
pub use tokio;

#[cfg(target_arch = "wasm32")]
pub use wasm_bindgen_test;

pub use crate::configure as cross_test_configure;
pub use crate::test as cross_test;