```rust use lazystatic::lazystatic; use tokio::runtime::Builder; use async_once::AsyncOnce;
lazystatic!{ static ref FOO : AsyncOnce = AsyncOnce::new(async{ 1 }); } let rt = Builder::newcurrentthread().build().unwrap(); rt.blockon(async { assert_eq!(FOO.get().await , &1) }) ```
bash cargo test wasm-pack test --headless --chrome --firefox
License: MIT OR Apache-2.0