mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-02-04 02:00:46 +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());
|
||
|
}
|