wasm-streams 0.3.0

Bridging between web streams and Rust streams using WebAssembly
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Testing

The tests use [wasm-pack](https://rustwasm.github.io/wasm-pack/).
See the [wasm-bindgen guide](https://rustwasm.github.io/wasm-bindgen/wasm-bindgen-test/usage.html) for more information.

We only run the tests on Chrome, since it's currently the only browser that supports the full streams API.
Run the tests with:
```
wasm-pack test --headless --chrome
```

When debugging the tests, remove the `--headless` flag:
```
wasm-pack test --chrome
```