mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-03-19 19:50:52 +00:00
This commit moves the `webidl/tests` folder to a new `crates/webidl-tests` crate (to have a test-only build script) and ports them to the `#[wasm_bindgen_test]` attribute, which should hopefully make testing much speedier for execution!
11 lines
170 B
Rust
11 lines
170 B
Rust
#![feature(use_extern_macros)]
|
|
|
|
extern crate wasm_bindgen_test;
|
|
extern crate wasm_bindgen;
|
|
|
|
pub mod consts;
|
|
pub mod enums;
|
|
pub mod simple;
|
|
pub mod throws;
|
|
pub mod array;
|