multiplatform_test
Provides a proc-macro that expands to testing on platforms relevant to
Hydroflow. By default, expands to testing on the host (using the normal
#[test]
attribute) and wasm (using #[wasm_bindgen_test]
.
For example, the test
use multiplatform_test;
Expands to
Installation
Because the multiplaform_test
macro expands to wasm_bindgen_test_macro
, you
will also need to depend on the
wasm_bindgen_test_macro
crate.
Usage
Specifying platforms
You can test on a subset of platforms by passing in the platforms in parens:
use multiplatform_test;
// Only test on the default #[test] platform
expands to
use multiplatform_test;