You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Several crates have integration tests which exercise the bindings generated by wasmer-pack. Actually writing the integration test code can be kinda brittle because it relies on external programs (e.g. python and wapm) which need to be installed, and paths tend to change depending on the OS.
It'd be nice to pull all this integration test logic out into a single helper crate that lets you,
Compile a project to a WAPM package
Generate bindings for that package
Set up a Python/Yarn/NPM environment with the bindings installed
Run a set of integration tests defined in that language
Cache dependencies from previous runs to avoid re-downloading them
Several crates have integration tests which exercise the bindings generated by
wasmer-pack
. Actually writing the integration test code can be kinda brittle because it relies on external programs (e.g.python
andwapm
) which need to be installed, and paths tend to change depending on the OS.It'd be nice to pull all this integration test logic out into a single helper crate that lets you,
I'm imagining being able to write code like this:
The text was updated successfully, but these errors were encountered: