mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-17 06:21:36 +03:00
14 lines
294 B
Rust
14 lines
294 B
Rust
|
use wasm_bindgen::JsValue;
|
||
|
use wasm_bindgen_test::*;
|
||
|
use js_sys::*;
|
||
|
|
||
|
#[wasm_bindgen_test]
|
||
|
fn new_undefined() {
|
||
|
assert_eq!(Boolean::new(JsValue::undefined()).value_of(), false);
|
||
|
}
|
||
|
|
||
|
#[wasm_bindgen_test]
|
||
|
fn new_truely() {
|
||
|
assert_eq!(Boolean::new(JsValue::from("foo")).value_of(), true);
|
||
|
}
|