mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-18 07:11:56 +03:00
92dd8e859f
* webidl: Remove exact-output tests These have not been as effective, nor as easy to write and maintain, as the project()-based integration tests. * tests: Move webidl tests into the webidl crate's test suite
27 lines
419 B
Rust
27 lines
419 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;
|