wasm-bindgen/crates/js-sys/tests/wasm/WebAssembly.rs
Nick Fitzgerald 61fc8d2567 Js sys once over ()
* js-sys: Return `f64` instead of `Number`

* js-sys: remove trailing whitespace

* js-sys: Ensure that all imported types derive Clone and Debug

* js-sys: Imported functions should always take JS object arguments by-ref
2018-07-25 16:33:44 -05:00

10 lines
214 B
Rust

use wasm_bindgen_test::*;
use js_sys::*;
#[wasm_bindgen_test]
fn validate() {
assert!(!WebAssembly::validate(&ArrayBuffer::new(42).into()).unwrap());
assert!(WebAssembly::validate(&2.into()).is_err());
}