mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-01-25 13:49:26 +00:00
9 lines
183 B
Rust
9 lines
183 B
Rust
use wasm_bindgen_test::*;
|
|
use web_sys;
|
|
|
|
#[wasm_bindgen_test]
|
|
fn accessor_works() {
|
|
let window = web_sys::window().unwrap();
|
|
assert!(window.indexed_db().unwrap().is_some());
|
|
}
|