mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-05-02 17:12:15 +00:00
This commit starts migrating the `wasm_bindgen` tests to the `wasm_bindgen_test` framework, starting to assemble the coffin for `wasm-bindgen-test-project-builder`. Over time all of the tests in `tests/all/*.rs` should be migrated to `wasm_bindgen_test`, although they may not all want to go into a monolithic test suite so we can continue to test for some more subtle situations with `#[wasm_bindgen]`. In the meantime those, the `tests/all/api.rs` tests can certainly migrate!
8 lines
137 B
Rust
8 lines
137 B
Rust
#![cfg(target_arch = "wasm32")]
|
|
#![feature(use_extern_macros)]
|
|
|
|
extern crate wasm_bindgen_test;
|
|
extern crate wasm_bindgen;
|
|
|
|
pub mod api;
|