Add example wasm bindgen test

This commit is contained in:
bitfl0wer 2023-11-20 00:27:27 +01:00
parent 2978f36607
commit 0b58347628
1 changed files with 6 additions and 0 deletions

View File

@ -1 +1,7 @@
use wasm_bindgen_test::wasm_bindgen_test;
wasm_bindgen_test::wasm_bindgen_test_configure!(run_in_browser);
#[wasm_bindgen_test]
fn pass() {
let _ = String::new();
}