mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-07-30 19:41:56 +00:00
Add WebIDL support for the object
type
This maps to the `Object` type in the `js_sys` crate.
This commit is contained in:
15
crates/web-sys/tests/wasm/performance.rs
Normal file
15
crates/web-sys/tests/wasm/performance.rs
Normal file
@@ -0,0 +1,15 @@
|
||||
use wasm_bindgen::prelude::*;
|
||||
use wasm_bindgen_test::*;
|
||||
use web_sys::Performance;
|
||||
|
||||
#[wasm_bindgen]
|
||||
extern {
|
||||
#[wasm_bindgen(js_name = performance)]
|
||||
static PERFORMANCE: Performance;
|
||||
}
|
||||
|
||||
#[wasm_bindgen_test]
|
||||
fn to_json() {
|
||||
let perf = JsValue::from(PERFORMANCE.to_json());
|
||||
assert!(perf.is_object());
|
||||
}
|
Reference in New Issue
Block a user