mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-11-28 23:14:12 +03:00
549e5a9be9
The WebIDL-based -sys crate will also use this, but I want its tests to be a separate suite that we can run separately and in parallel in CI. Therefore, this testing infrastructure code needs to be share-able between them :)
28 lines
431 B
Rust
28 lines
431 B
Rust
extern crate wasm_bindgen_test_project_builder as project_builder;
|
|
|
|
use project_builder::{project, run};
|
|
|
|
mod api;
|
|
mod char;
|
|
mod classes;
|
|
mod closures;
|
|
mod comments;
|
|
mod dependencies;
|
|
mod enums;
|
|
mod import_class;
|
|
mod imports;
|
|
#[cfg(feature = "js_globals")]
|
|
mod js_globals;
|
|
mod jsobjects;
|
|
mod math;
|
|
mod node;
|
|
mod non_debug;
|
|
mod non_wasm;
|
|
mod simple;
|
|
mod slice;
|
|
mod structural;
|
|
mod typescript;
|
|
mod u64;
|
|
mod validate_prt;
|
|
mod webidl;
|