mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-06-12 12:31:22 +00:00
Migrate webidl
tests to wasm_bindgen_test
(#590)
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!
This commit is contained in:
10
crates/webidl-tests/main.rs
Normal file
10
crates/webidl-tests/main.rs
Normal file
@ -0,0 +1,10 @@
|
||||
#![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;
|
Reference in New Issue
Block a user