mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-01-09 22:42:44 +00:00
13 lines
234 B
Rust
13 lines
234 B
Rust
use wasm_bindgen::prelude::*;
|
|
use wasm_bindgen_test::*;
|
|
|
|
#[wasm_bindgen(raw_module = "./tests/headless/modules.js")]
|
|
extern "C" {
|
|
fn get_five() -> u32;
|
|
}
|
|
|
|
#[wasm_bindgen_test]
|
|
fn test_get_five() {
|
|
assert_eq!(get_five(), 5);
|
|
}
|