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
Currently httpmock always compiles with the server enabled (there is no feature to enable/disable it)
This prevents the crate from running with wasm-bindgen-test because the server uses a bunch of things that cannot compile in wasm32 environments. (e.g. we can't bind network sockets in wasm)
It would be nice if we could use the connect method in wasm to connect to an a standalone server
The text was updated successfully, but these errors were encountered:
Currently
httpmock
always compiles with the server enabled (there is no feature to enable/disable it)This prevents the crate from running with
wasm-bindgen-test
because the server uses a bunch of things that cannot compile in wasm32 environments. (e.g. we can't bind network sockets in wasm)It would be nice if we could use the
connect
method in wasm to connect to an a standalone serverThe text was updated successfully, but these errors were encountered: