mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-06-21 16:51:33 +00:00
@ -1,5 +1,6 @@
|
||||
use wasm_bindgen::JsValue;
|
||||
use wasm_bindgen_test::*;
|
||||
use wasm_bindgen::JsCast;
|
||||
use js_sys::*;
|
||||
|
||||
macro_rules! js_array {
|
||||
@ -286,3 +287,10 @@ fn for_each() {
|
||||
assert_eq!(sum_indices_of_evens(&js_array![1, 3, 5, 7]), 0);
|
||||
assert_eq!(sum_indices_of_evens(&js_array![3, 5, 7, 10]), 3);
|
||||
}
|
||||
|
||||
#[wasm_bindgen_test]
|
||||
fn array_inheritance() {
|
||||
let array = js_array![0];
|
||||
assert!(array.is_instance_of::<Array>());
|
||||
assert!(array.is_instance_of::<Object>());
|
||||
}
|
||||
|
Reference in New Issue
Block a user