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
```rust use multiplatformtest::multiplatformtest;
fn my_test() { // ... } ```
Expands to
```rust
fn my_test() { // ... } ```
Because the multiplaform_test
macro expands to wasm_bindgen_test_macro
, you
will also need to depend on the
wasm_bindgen_test_macro
crate.
You can test on a subset of platforms by passing in the platforms in parens:
```rust use multiplatformtest::multiplatformtest;
fn my_test() { // ... } ```
expands to
```rust use multiplatformtest::multiplatformtest;
fn my_test() { // ... } ```